Finished up game

This commit is contained in:
maxwes08
2026-02-03 13:44:30 +01:00
parent df6832419f
commit 46816d3dbf
5 changed files with 105 additions and 24 deletions

View File

@@ -11,12 +11,14 @@ namespace Snake
public int X;
public int Y;
public CellTypes Type;
public Color Color;
public Cell(int x, int y, CellTypes type)
{
X = x;
Y = y;
Type = type;
Color = Color.White;
}
}
}