11 lines
131 B
C#
11 lines
131 B
C#
namespace RobotAndDonkey.Game.Board;
|
|
|
|
public enum ECellType
|
|
{
|
|
Grass,
|
|
Dry,
|
|
Fertile,
|
|
Mud,
|
|
Blocked,
|
|
Rocky
|
|
} |