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