refactored

This commit is contained in:
2026-05-24 14:21:35 +03:00
parent b75c9581b8
commit 119b85ea31
5 changed files with 56 additions and 58 deletions
+8 -1
View File
@@ -1,4 +1,11 @@
#pragma once
using Tile = unsigned long long int;
using Score = unsigned long long int;
using Score = unsigned long long int;
enum class Direction {
up,
down,
left,
right
};