14 lines
287 B
C#
14 lines
287 B
C#
|
|
|||
|
namespace ProjectBulldozer.MovementStrategy
|
|||
|
{
|
|||
|
public interface IMoveableObject
|
|||
|
{
|
|||
|
ObjectParameters? GetObjectPosition { get; }
|
|||
|
|
|||
|
int GetStep { get; }
|
|||
|
|
|||
|
bool CheckCanMove(DirectionType direction);
|
|||
|
void MoveObject(DirectionType direction);
|
|||
|
}
|
|||
|
}
|