X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fscene.h;fp=source%2Fscene.h;h=9766ab21a0292a4a217e76c086fcefae4d77a4a8;hb=6a135773515b020ea3f163a11d06150ae5c0e69f;hp=6bfad812e517ecc45216216ed2aa0a37c50e3789;hpb=6b31fae3191e88fe391c3d3eebbf3e56789dd3e3;p=libs%2Fgl.git diff --git a/source/scene.h b/source/scene.h index 6bfad812..9766ab21 100644 --- a/source/scene.h +++ b/source/scene.h @@ -17,7 +17,12 @@ namespace GL { class Scene: public Renderable { private: - std::set renderables; + struct Compare + { + bool operator()(const Renderable *, const Renderable *) const; + }; + + std::set renderables; public: void add(const Renderable &);