9 lines
233 B
Java
9 lines
233 B
Java
|
package ProjectStormtrooper;
|
||
|
|
||
|
public interface IMoveableObject {
|
||
|
ObjectParameters GetObjectPosition();
|
||
|
int GetStep();
|
||
|
boolean CheckCanMove(EnumDirectionType direction);
|
||
|
void MoveObject(EnumDirectionType direction);
|
||
|
}
|