ColorRunner/core/src/de/samdev/colorrunner/game/world/entities/MovingEntity.java

17 lines
321 B
Java
Raw Normal View History

2014-08-10 17:19:40 +02:00
package de.samdev.colorrunner.game.world.entities;
public abstract class MovingEntity extends CRGameEntity {
public MovingEntity(float width, float height) {
super(width, height);
// TODO Auto-generated constructor stub
}
@Override
public void update(float delta) {
// TODO Auto-generated method stub
}
}