mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-30 09:15:35 +00:00
656007cf01
script are now simple function-scripts, not classes. git-svn-id: https://openmw.svn.sourceforge.net/svnroot/openmw/trunk@82 ea6a568a-9f4f-0410-981a-c910a81bb256
14 lines
257 B
D
14 lines
257 B
D
module monster.modules.all;
|
|
|
|
import monster.modules.io;
|
|
import monster.modules.timer;
|
|
import monster.modules.frames;
|
|
import monster.modules.threads;
|
|
|
|
void initAllModules()
|
|
{
|
|
initIOModule();
|
|
initTimerModule();
|
|
initFramesModule();
|
|
initThreadModule;
|
|
}
|