PIbd22_Kuznetsov_A.V._Excav.../Excavator/IMoveableObject.cs

18 lines
426 B
C#
Raw Permalink Normal View History

2023-12-15 21:24:31 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Excavator.DrawingObjects;
namespace Excavator.MovementStrategy
{
public interface IMoveableObject
{
ObjectParameters? GetObjectPosition { get; }
int GetStep { get; }
bool CheckCanMove(DirectionType direction);
void MoveObject(DirectionType direction);
}
}