9 lines
146 B
C#
9 lines
146 B
C#
using System.Collections.Generic;
|
|
|
|
namespace ConsoleApp.Maps
|
|
{
|
|
public interface IMap
|
|
{
|
|
public List<ICell> PossibleMoves();
|
|
}
|
|
} |