/examples/advanced/physics/physicsShapes/IPhysicsComponent.java
http://mt4j.googlecode.com/ · Java · 10 lines · 8 code · 2 blank · 0 comment · 0 complexity · 3b3fc72a1d9238165f0afa3668248959 MD5 · raw file
- package advanced.physics.physicsShapes;
-
- import org.jbox2d.dynamics.Body;
- import org.mt4j.util.math.Vector3D;
-
- public interface IPhysicsComponent{
- public void setCenterRotation(float angle);
- public void setPositionGlobal(Vector3D centerPoint);
- public Body getBody();
- }