PIbd-23-Radaev-A.V.-20/Catamaran/IMoveableObject.cs
Аркадий Радаев eda14d9810 res
2023-10-31 12:27:43 +04:00

21 lines
404 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Catamaran
{
public interface IMoveableObject
{
ObjectParameters? GetObjectPosition { get; }
int GetStep { get; }
bool CheckCanMove(DirectionType direction);
void MoveObject(DirectionType direction);
}
}