forked from fr1tz/rotc-ethernet-game
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cs
34 lines (28 loc) · 945 Bytes
/
main.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
//------------------------------------------------------------------------------
// Revenge Of The Cats: Ethernet
// Copyright notices are in the file named COPYING.
//------------------------------------------------------------------------------
//-----------------------------------------------------------------------------
// 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");
exec("./ui/lightEditor.gui");
exec("./ui/lightEditorNewDB.gui");
}
};
activatePackage( Creator );