using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using AirBomber.DrawningObjects; namespace AirBomber.MovementStrategy { public interface IMoveableObject { ObjectParameters? GetObjectPosit { get; } int GetStep { get; } bool CheckCanMove(Diraction direction); void MoveObject(Diraction direction); } }