19 lines
417 B
C#
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);
|
|
}
|
|
}
|