mirror of
https://gitee.com/yanmu_ym/cpp.git
synced 2026-02-03 09:33:16 +08:00
12 lines
174 B
C++
12 lines
174 B
C++
#ifndef TILEGRAPHICS_H
|
|
#define TILEGRAPHICS_H
|
|
|
|
#include <string>
|
|
|
|
namespace Game {
|
|
struct tile_t;
|
|
std::string drawTileString(tile_t currentTile);
|
|
} // namespace Game
|
|
|
|
#endif
|