mirror of
https://github.com/OpenMW/openmw.git
synced 2025-02-04 22:15:35 +00:00
879cc132d5
- latest Monster source git-svn-id: https://openmw.svn.sourceforge.net/svnroot/openmw/trunk@81 ea6a568a-9f4f-0410-981a-c910a81bb256
12 lines
205 B
D
12 lines
205 B
D
module monster.modules.all;
|
|
|
|
import monster.modules.io;
|
|
import monster.modules.timer;
|
|
import monster.modules.frames;
|
|
|
|
void initAllModules()
|
|
{
|
|
initIOModule();
|
|
initTimerModule();
|
|
initFramesModule();
|
|
}
|