mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-03-06 14:00:39 +00:00
21 lines
461 B
C#
21 lines
461 B
C#
|
|
//-----------------------------------------------------------------------------
|
||
|
|
// Verve
|
||
|
|
// Copyright (C) - Violent Tulip
|
||
|
|
//-----------------------------------------------------------------------------
|
||
|
|
|
||
|
|
function InitializeVPathEditor()
|
||
|
|
{
|
||
|
|
// Gui.
|
||
|
|
exec( "./GUI/Profiles.cs" );
|
||
|
|
exec( "./GUI/VPathEditor.gui" );
|
||
|
|
|
||
|
|
// Scripts.
|
||
|
|
exec( "./Scripts/Plugin.cs" );
|
||
|
|
exec( "./Scripts/Editor.cs" );
|
||
|
|
}
|
||
|
|
|
||
|
|
function DestroyVPathEditor()
|
||
|
|
{
|
||
|
|
// Void.
|
||
|
|
}
|