diff options
author | whiteshark0 <whiteshark0@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2007-10-10 17:50:05 +0000 |
---|---|---|
committer | whiteshark0 <whiteshark0@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2007-10-10 17:50:05 +0000 |
commit | 621bfb05407a169f6511f5b115d0622e5ec8bdd5 (patch) | |
tree | 7edbf5de48b2914978b8575030c2d0a72dcf6011 /Game/Code/Classes/UModules.pas | |
parent | e64a9f34e7c08377990a8b3f11c24e9e9c5b8cc3 (diff) | |
download | usdx-621bfb05407a169f6511f5b115d0622e5ec8bdd5.tar.gz usdx-621bfb05407a169f6511f5b115d0622e5ec8bdd5.tar.xz usdx-621bfb05407a169f6511f5b115d0622e5ec8bdd5.zip |
Added Hook and Service Class for new Plugin System to Trunc
Added Core and CoreModule. That maybe will be used for new Core management.
Core needs many code to write
Some Info to Plugin SDK added
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@497 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to 'Game/Code/Classes/UModules.pas')
-rw-r--r-- | Game/Code/Classes/UModules.pas | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Game/Code/Classes/UModules.pas b/Game/Code/Classes/UModules.pas new file mode 100644 index 00000000..e8e759ff --- /dev/null +++ b/Game/Code/Classes/UModules.pas @@ -0,0 +1,20 @@ +unit UModules;
+
+interface
+{*********************
+ UModules
+ Unit Contains all used Modules in its uses clausel
+ and a const with an array of all Modules to load
+*********************}
+
+uses
+ UCoreModule;
+
+const
+ CORE_MODULES_TO_LOAD: Array[0..0] of cCoreModule = (
+ TCoreModule //Remove this later, just a dummy
+ );
+
+implementation
+
+end.
\ No newline at end of file |