forked from teamnwah/openmw-tes3coop
1cfaeeb8fc
git-svn-id: https://openmw.svn.sourceforge.net/svnroot/openmw/trunk@46 ea6a568a-9f4f-0410-981a-c910a81bb256
11 lines
188 B
D
11 lines
188 B
D
module bullet.bullet;
|
|
|
|
import bullet.bindings;
|
|
|
|
void initBullet()
|
|
{
|
|
if(cpp_initBullet())
|
|
throw new Exception("Bullet setup failed");
|
|
}
|
|
|
|
void cleanupBullet() { cpp_cleanupBullet(); }
|