Files
snake/Snake/CellTypes.cs
2026-01-27 11:02:21 +01:00

10 lines
104 B
C#

namespace Snake
{
public enum CellTypes
{
None,
Food,
Snake,
}
}