1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-02-03 10:15:33 +00:00
openmw-tes3mp/bullet/bullet.d

12 lines
188 B
D
Raw Normal View History

module bullet.bullet;
import bullet.bindings;
void initBullet()
{
if(cpp_initBullet())
throw new Exception("Bullet setup failed");
}
void cleanupBullet() { cpp_cleanupBullet(); }