mirror of
https://gitee.com/yanmu_ym/cpp.git
synced 2026-02-09 12:24:57 +08:00
14 lines
151 B
C++
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
|