X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fyoink;a=blobdiff_plain;f=src%2FTilemapFont.hh;h=56a2d4bcfcc1e62348198a320a88c7f56517c8ec;hp=5ec906465f6701e8478bae4d0dd57fdc7748b0cf;hb=c2321281bf12a7efaedde930422c7ddbc92080d4;hpb=87bc17e55b0c1dc73ecc66df856d3f08fd7a7724 diff --git a/src/TilemapFont.hh b/src/TilemapFont.hh index 5ec9064..56a2d4b 100644 --- a/src/TilemapFont.hh +++ b/src/TilemapFont.hh @@ -34,22 +34,22 @@ * Text on the screen. */ -#include "tilemap.hh" +#include -class TilemapFont : public dc::tilemap +class TilemapFont : public Mf::Tilemap { public: - struct exception : public std::runtime_error + struct Exception : public std::runtime_error { - explicit exception(const std::string& what_arg) : + 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], + Mf::Tilemap::Orientation what = Mf::Tilemap::NORMAL); };