mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-01-26 23:54:46 +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.
|
|
}
|