10 lines
110 B
C#
10 lines
110 B
C#
|
|
namespace Chessistics.Engine.Model;
|
||
|
|
|
||
|
|
public enum CellType
|
||
|
|
{
|
||
|
|
Empty,
|
||
|
|
Wall,
|
||
|
|
Production,
|
||
|
|
Demand
|
||
|
|
}
|