13 lines
267 B
C#
Raw Permalink Normal View History

namespace AirBomber.MovementStrategy
{
public interface IMovableObject
{
ObjectParameters? ObjectPosition { get; }
int Step { get; }
bool CanMove(DirectionType Direction);
void MoveObject(DirectionType Direction);
}
}