]> Dogcows Code - chaz/yoink/blobdiff - src/TilemapFont.cc
library class revamped as manager, goodbye tilemap
[chaz/yoink] / src / TilemapFont.cc
index da0e9a67f866b6af2dde5c6540c7d3748e8647e4..48b0fc3951d7655f4c657cdc5f1b053616a37d80 100644 (file)
 
 
 TilemapFont::TilemapFont() :
-       Tilemap("Font") {}
+       Mf::Texture("Font") {}
 
 
 void TilemapFont::getTileCoords(char symbol, Mf::Scalar coords[8],
-               Tilemap::Orientation what)
+               Mf::Texture::Orientation what)
 {
-       Tilemap::Index index = 0;
+       Mf::Texture::TileIndex index = 0;
 
        if (symbol >= ' ' && symbol <= '_')
        {
@@ -53,7 +53,7 @@ void TilemapFont::getTileCoords(char symbol, Mf::Scalar coords[8],
                index = 0;
        }
 
-       Tilemap::getTileCoords(index, coords, what);
+       Mf::Texture::getTileCoords(index, coords, what);
 }
 
 
This page took 0.021308 seconds and 4 git commands to generate.