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

View File

@@ -0,0 +1,8 @@
namespace Snake.Core;
public enum GameTickResult
{
Moved,
AteFood,
GameOver
}