]> Dogcows Code - chaz/yoink/blobdiff - src/Tilemap.hh
removed alut dependency
[chaz/yoink] / src / Tilemap.hh
index 163b45af434aa78289412064904c95ba6ec55f20..92773879b91bda80768c99c9f1dbfd12829ce1b7 100644 (file)
@@ -50,6 +50,7 @@
 class Tilemap : public Mf::Texture
 {
 public:
+
        /**
         * Possible orientations for texture coordinates.
         */
@@ -66,7 +67,7 @@ public:
        } Orientation;
 
 
-       Tilemap(const std::string& name);
+       explicit Tilemap(const std::string& name);
 
        /**
         * Calculate texture coordinates for a tile at a certain index.  Tiles are
@@ -97,8 +98,9 @@ public:
        static std::string getPath(const std::string& name);
 
 private:
+
        class Impl;
-       boost::shared_ptr<Impl> impl_;
+       boost::shared_ptr<Impl> mImpl;
 };
 
 
This page took 0.017156 seconds and 4 git commands to generate.