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

8 lines
181 B
Java
Raw Permalink Normal View History

2024-06-10 13:56:47 +04:00
package MovementStrategy;
public interface IMoveableObject {
ObjectParameters GetObjectPosition();
int GetStep();
Boolean TryMoveObject(MovementDirection direction);
}