]> Dogcows Code - chaz/yoink/blobdiff - src/TilemapFont.cc
converted tilemap scripts to lua
[chaz/yoink] / src / TilemapFont.cc
index ea876cef0f3c72c7987d89f2302ce342c18f9953..da0e9a67f866b6af2dde5c6540c7d3748e8647e4 100644 (file)
 
 
 TilemapFont::TilemapFont() :
-       Mf::Tilemap("Font") {}
+       Tilemap("Font") {}
 
 
 void TilemapFont::getTileCoords(char symbol, Mf::Scalar coords[8],
-               Mf::Tilemap::Orientation what)
+               Tilemap::Orientation what)
 {
-       Mf::Tilemap::Index index = 0;
+       Tilemap::Index 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);
+       Tilemap::getTileCoords(index, coords, what);
 }
 
 
This page took 0.019993 seconds and 4 git commands to generate.