Initial commit
This commit is contained in:
26
Torque/SDK/example/creator/main.cs
Normal file
26
Torque/SDK/example/creator/main.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
//-----------------------------------------------------------------------------
|
||||
// Torque Engine
|
||||
// Copyright (c) GarageGames.Com
|
||||
//-----------------------------------------------------------------------------
|
||||
loadDir("common");
|
||||
|
||||
package Creator
|
||||
{
|
||||
function onStart()
|
||||
{
|
||||
Parent::onStart();
|
||||
echo( "\n--------- Initializing: Torque Creator ---------" );
|
||||
|
||||
// Scripts
|
||||
exec("./editor/editor.cs");
|
||||
exec("./editor/particleEditor.cs");
|
||||
exec("./scripts/scriptDoc.cs");
|
||||
|
||||
// Gui's
|
||||
exec("./ui/creatorProfiles.cs");
|
||||
exec("./ui/InspectDlg.gui");
|
||||
exec("./ui/GuiEditorGui.gui");
|
||||
}
|
||||
};
|
||||
|
||||
activatePackage( Creator );
|
||||
Reference in New Issue
Block a user