2009-01-14 20:51:17 +00:00
|
|
|
module monster.modules.all;
|
|
|
|
|
|
|
|
import monster.modules.io;
|
|
|
|
import monster.modules.timer;
|
2009-01-16 12:56:54 +00:00
|
|
|
import monster.modules.frames;
|
2009-01-20 08:29:15 +00:00
|
|
|
import monster.modules.threads;
|
2009-01-14 20:51:17 +00:00
|
|
|
|
|
|
|
void initAllModules()
|
|
|
|
{
|
|
|
|
initIOModule();
|
|
|
|
initTimerModule();
|
2009-01-16 12:56:54 +00:00
|
|
|
initFramesModule();
|
2009-01-20 08:29:15 +00:00
|
|
|
initThreadModule;
|
2009-01-14 20:51:17 +00:00
|
|
|
}
|