2023-11-30 02:09:48 +04:00
|
|
|
|
using Bulldozer;
|
|
|
|
|
|
2023-11-23 01:37:55 +04:00
|
|
|
|
namespace ProjectBulldozer.MovementStrategy
|
|
|
|
|
{
|
|
|
|
|
public interface IMoveableObject
|
|
|
|
|
{
|
|
|
|
|
ObjectParameters? GetObjectPosition { get; }
|
|
|
|
|
int GetStep { get; }
|
|
|
|
|
bool CheckCanMove(DirectionType direction);
|
|
|
|
|
void MoveObject(DirectionType direction);
|
|
|
|
|
}
|
|
|
|
|
}
|