20 lines
445 B
C#
20 lines
445 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
using AirFighter.Drawnings;
|
|
|
|
namespace AirFighter.MovementStrategy
|
|
{
|
|
public interface IMoveableObject
|
|
{
|
|
ObjectParameters? GetObjectPosition { get; }
|
|
int GetStep { get; }
|
|
bool CheckCanMove(DirectionAirFighter direction);
|
|
void MoveObject(DirectionAirFighter direction);
|
|
|
|
}
|
|
}
|