PIbd-14_Antonova_A.A.__Hard/MovementStrategy/IMoveableObject.java

8 lines
181 B
Java
Raw Normal View History

2024-05-09 20:09:37 +04:00
package MovementStrategy;
public interface IMoveableObject {
ObjectParameters GetObjectPosition();
int GetStep();
Boolean TryMoveObject(MovementDirection direction);
}