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

3
Snake.Core/Position.cs Normal file
View File

@@ -0,0 +1,3 @@
namespace Snake.Core;
public readonly record struct Position(int X, int Y);