16 lines
345 B
C#
16 lines
345 B
C#
using ProjectAirbus.Drawnings;
|
|
using ProjectAirbus.Entities;
|
|
|
|
namespace ProjectAirbus.MovementStrategy
|
|
{
|
|
public interface IMoveableObject
|
|
{
|
|
ObjectParameters? GetObjectPosition { get; }
|
|
|
|
int GetStep { get; }
|
|
bool CheckCanMove(DirectionType direction);
|
|
void MoveObject(DirectionType direction);
|
|
|
|
}
|
|
}
|