PIbd-22_Isaeva_A.I._Airbus_.../Airbus/MovementStrategy/IMoveableObject.cs

16 lines
345 B
C#
Raw Permalink Normal View History

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);
}
}