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

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