initial commit

This commit is contained in:
2024-04-18 00:51:12 +07:00
commit 6333d80fd4
21 changed files with 588 additions and 0 deletions

9
Models/Direction.cs Normal file
View File

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