Add project files.

This commit is contained in:
maxwes08
2026-01-27 11:02:21 +01:00
parent 266591bbea
commit b6e5c3dfbc
12 changed files with 436 additions and 0 deletions

22
Snake/Cell.cs Normal file
View File

@@ -0,0 +1,22 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Snake
{
public class Cell
{
public int X;
public int Y;
public CellTypes Type;
public Cell(int x, int y, CellTypes type)
{
X = x;
Y = y;
Type = type;
}
}
}