]> Dogcows Code - chaz/yoink/blobdiff - src/TilemapFont.cc
library class revamped as manager, goodbye tilemap
[chaz/yoink] / src / TilemapFont.cc
index ea876cef0f3c72c7987d89f2302ce342c18f9953..48b0fc3951d7655f4c657cdc5f1b053616a37d80 100644 (file)
 
 
 TilemapFont::TilemapFont() :
-       Mf::Tilemap("Font") {}
+       Mf::Texture("Font") {}
 
 
 void TilemapFont::getTileCoords(char symbol, Mf::Scalar coords[8],
-               Mf::Tilemap::Orientation what)
+               Mf::Texture::Orientation what)
 {
-       Mf::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;
        }
 
-       Mf::Tilemap::getTileCoords(index, coords, what);
+       Mf::Texture::getTileCoords(index, coords, what);
 }
 
 
This page took 0.02197 seconds and 4 git commands to generate.