24 lines
471 B
C#

using HexFiled;
namespace Chars
{
public class Player : IUnit
{
private HexCoordinates _curentPosition;
public void Move(HexCoordinates coordinates)
{
throw new System.NotImplementedException();
}
public void Spawn()
{
throw new System.NotImplementedException();
}
public void Death()
{
throw new System.NotImplementedException();
}
}
}