openmw-tes3coop/monster/modules/threads.d
nkorslund 879cc132d5 - improved the fps ticker
- latest Monster source


git-svn-id: https://openmw.svn.sourceforge.net/svnroot/openmw/trunk@81 ea6a568a-9f4f-0410-981a-c910a81bb256
2009-01-16 12:56:54 +00:00

25 lines
401 B
D

// This module provides an interface to the virtual threading API in
// Monster. Not done.
module monster.modules.threads;
/*
import monster.monster;
const char[] moduleDef =
"singleton thread;
native cancel();
native schedule();
idle pause();
"; //"
void initThreadModule()
{
static MonsterClass mc;
if(mc !is null)
return;
mc = new MonsterClass(MC.String, moduleDef, "thread");
}
*/