13 lines
302 B
C#
Raw Normal View History

using Bulldozer;
namespace ProjectBulldozer.MovementStrategy
{
public interface IMoveableObject
{
ObjectParameters? GetObjectPosition { get; }
int GetStep { get; }
bool CheckCanMove(DirectionType direction);
void MoveObject(DirectionType direction);
}
}