10 lines
104 B
C#
10 lines
104 B
C#
namespace Snake
|
|
{
|
|
public enum CellTypes
|
|
{
|
|
None,
|
|
Food,
|
|
Snake,
|
|
}
|
|
}
|