11 lines
320 B
C#
11 lines
320 B
C#
//using ProjectLainer.Drawings;
|
|
namespace ProjectLainer.MovementStrategy
|
|
{
|
|
public interface IMoveableObject
|
|
{
|
|
ObjectParameters? GetObjectPosition { get; }
|
|
int GetStep { get; }
|
|
bool CheckCanMove(DirectionType direction);
|
|
void MoveObject(DirectionType direction);
|
|
}
|
|
}
|