changed team structure

This commit is contained in:
2021-08-21 11:46:21 +02:00
parent 7052edfef1
commit 88d2644219
8 changed files with 81 additions and 38 deletions

16
include/game/Types.h Normal file
View File

@@ -0,0 +1,16 @@
#pragma once
#include <cstdint>
namespace td {
namespace game {
enum class Direction : std::uint8_t{
PositiveX = 1 << 0,
NegativeX = 1 << 1,
PositiveY = 1 << 2,
NegativeY = 1 << 3,
};
} // namespace game
} // namespace td