feat: initial project structure with Snake.Core, CLI and Avalonia skeleton

This commit is contained in:
Heller
2026-06-17 19:02:07 +00:00
commit 42fcaf8631
25 changed files with 661 additions and 0 deletions

9
Snake.Core/Direction.cs Normal file
View File

@@ -0,0 +1,9 @@
namespace Snake.Core;
public enum Direction
{
Up,
Down,
Left,
Right
}