forked from mirror/openmw-tes3mp
26 lines
401 B
D
26 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");
|
||
|
}
|
||
|
*/
|