X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fyoink;a=blobdiff_plain;f=src%2FTilemapFont.hh;h=98a3a13ce1431c7589eb61e2d34dc8bd401ebcbe;hp=5ec906465f6701e8478bae4d0dd57fdc7748b0cf;hb=cfe38a72ab859538db6269bc9b97f55e8f1f8709;hpb=7d15b919681bb9ec0088b4b27c6abf62d6dfb9b1 diff --git a/src/TilemapFont.hh b/src/TilemapFont.hh index 5ec9064..98a3a13 100644 --- a/src/TilemapFont.hh +++ b/src/TilemapFont.hh @@ -34,22 +34,17 @@ * Text on the screen. */ -#include "tilemap.hh" +#include "Tilemap.hh" -class TilemapFont : public dc::tilemap +class TilemapFont : public Tilemap { public: - struct exception : public std::runtime_error - { - explicit exception(const std::string& what_arg) : - std::runtime_error(what_arg) {} - }; TilemapFont(); - void getTileCoords(char symbol, dc::scalar coords[8], - dc::tilemap::orientation what = dc::tilemap::normal); + void getTileCoords(char symbol, Mf::Scalar coords[8], + Tilemap::Orientation what = Tilemap::NORMAL); };