13 lines
267 B
C#
13 lines
267 B
C#
|
namespace AirBomber.MovementStrategy
|
|||
|
{
|
|||
|
public interface IMovableObject
|
|||
|
{
|
|||
|
ObjectParameters? ObjectPosition { get; }
|
|||
|
int Step { get; }
|
|||
|
|
|||
|
bool CanMove(DirectionType Direction);
|
|||
|
|
|||
|
void MoveObject(DirectionType Direction);
|
|||
|
}
|
|||
|
}
|