forked from LeenkxTeam/LNXSDK
20 lines
300 B
Haxe
20 lines
300 B
Haxe
package leenkx.trait.physics;
|
|
|
|
#if (!lnx_physics)
|
|
|
|
class PhysicsHook extends iron.Trait { public function new() { super(); } }
|
|
|
|
#else
|
|
|
|
#if lnx_bullet
|
|
|
|
typedef PhysicsHook = leenkx.trait.physics.bullet.PhysicsHook;
|
|
|
|
#else
|
|
|
|
typedef PhysicsHook = leenkx.trait.physics.oimo.PhysicsHook;
|
|
|
|
#end
|
|
|
|
#end
|