X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fyoink;a=blobdiff_plain;f=src%2FTilemapFont.cc;h=b060ccf26e038c2c5c7c28834c0fde3f2c64644e;hp=14cfa2c28d0605956354b0aec21edec38649a9e4;hb=c143f7e806766a73cd69dc6e084e977641019ce6;hpb=837bae9f2bf7b25e1d3d2625eeaf39c1d2f48827 diff --git a/src/TilemapFont.cc b/src/TilemapFont.cc index 14cfa2c..b060ccf 100644 --- a/src/TilemapFont.cc +++ b/src/TilemapFont.cc @@ -14,14 +14,15 @@ #include "TilemapFont.hh" +/* TilemapFont::TilemapFont() : - Mf::Texture("Font") {} + moof::texture("Font") {} -void TilemapFont::getTileCoords(char symbol, Mf::Scalar coords[8], - Mf::Texture::Orientation what) +void TilemapFont::tile_coordinates(char symbol, moof::scalar coords[8], + moof::texture::orientation what) { - Mf::Texture::TileIndex index = 0; + int index = 0; if (symbol >= ' ' && symbol <= '_') { @@ -36,6 +37,7 @@ void TilemapFont::getTileCoords(char symbol, Mf::Scalar coords[8], index = 0; } - Mf::Texture::getTileCoords(index, coords, what); + moof::texture::tile_coordinates(index, coords, what); } +*/