forked from mirror/openmw-tes3mp
879cc132d5
- latest Monster source git-svn-id: https://openmw.svn.sourceforge.net/svnroot/openmw/trunk@81 ea6a568a-9f4f-0410-981a-c910a81bb256
25 lines
401 B
D
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");
|
|
}
|
|
*/
|