2023-11-18 10:00:43 +04:00
|
|
|
|
using ProjectAirbus.Drawnings;
|
|
|
|
|
using ProjectAirbus.Entities;
|
|
|
|
|
|
|
|
|
|
namespace ProjectAirbus.MovementStrategy
|
|
|
|
|
{
|
2023-11-18 10:47:46 +04:00
|
|
|
|
public interface IMoveableObject
|
2023-11-18 10:00:43 +04:00
|
|
|
|
{
|
|
|
|
|
ObjectParameters? GetObjectPosition { get; }
|
|
|
|
|
|
|
|
|
|
int GetStep { get; }
|
|
|
|
|
bool CheckCanMove(DirectionType direction);
|
|
|
|
|
void MoveObject(DirectionType direction);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|