Sha..om 2012-07-09 14:08:00 +00:00
parent 050f630383
commit 5d982c71d1

View File

@ -42,13 +42,13 @@ public interface PhysicsTickListener {
* @param space the physics space * @param space the physics space
* @param tpf the time per frame in seconds * @param tpf the time per frame in seconds
*/ */
public void prePhysicsTick(PhysicsSpace space, float f); public void prePhysicsTick(PhysicsSpace space, float tpf);
/** /**
* Called after the physics has been stepped, use to check for forces etc. * Called after the physics has been stepped, use to check for forces etc.
* @param space the physics space * @param space the physics space
* @param tpf the time per frame in seconds * @param tpf the time per frame in seconds
*/ */
public void physicsTick(PhysicsSpace space, float f); public void physicsTick(PhysicsSpace space, float tpf);
} }