X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fyoink;a=blobdiff_plain;f=src%2FTilemap.hh;h=92773879b91bda80768c99c9f1dbfd12829ce1b7;hp=163b45af434aa78289412064904c95ba6ec55f20;hb=71bd9dbaf1c1e3c55a9f63392a73865d8aeee7d4;hpb=23d8f7a5fbd1eca7f46f2342c20ac5e28ae0128a diff --git a/src/Tilemap.hh b/src/Tilemap.hh index 163b45a..9277387 100644 --- a/src/Tilemap.hh +++ b/src/Tilemap.hh @@ -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_; + boost::shared_ptr mImpl; };