2023-11-27 23:25:40 +04:00

19 lines
417 B
C#

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