mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-20 11:53:53 +00:00
12 lines
188 B
D
12 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(); }
|