Files
makefile_cpp/Make/2048/headers/tile.hpp
2023-04-13 14:02:08 +08:00

14 lines
151 B
C++

#ifndef TILE_H
#define TILE_H
#include "global.hpp"
namespace Game {
struct tile_t {
ull value{};
bool blocked{};
};
} // namespace Game
#endif