1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-18 13:12:50 +00:00
OpenMW/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(); }