PIBD-11_Basalov_A.D_Simple/ProjectElectricLocomotive/MovementStrategy/IMovableObject.cs

33 lines
954 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ProjectElectricLocomotive.MovementStrategy;
/// <summary>
/// Интерфейс для работы с перемещаемыми объектами
/// </summary>
public interface IMovableObject
{
/// <summary>
/// Получение координаты объекта
/// </summary>
ObjectParameters? GetObjectPosition { get; }
/// <summary>
/// Шаг объекта
/// </summary>
int GetStep { get; }
/// <summary>
/// Попытка переместить объект в указанном направлении
/// </summary>
/// <param name="direction">направление</param>
/// <returns>true - объект перемещен , false - перемещение невозможно</returns>
bool TryMoveObject(MovementDirection direction);
}