X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=blobdiff_plain;f=source%2Fscene.h;h=639a467fa849cb526c19ac31744b957f820af7ea;hp=6bfad812e517ecc45216216ed2aa0a37c50e3789;hb=HEAD;hpb=c6aea1bc1586ffef132e6fffdf99343cb56617db diff --git a/source/scene.h b/source/scene.h deleted file mode 100644 index 6bfad812..00000000 --- a/source/scene.h +++ /dev/null @@ -1,33 +0,0 @@ -/* $Id$ - -This file is part of libmspgl -Copyright © 2007 Mikko Rasa, Mikkosoft Productions -Distributed under the LGPL -*/ - -#ifndef MSP_GL_SCENE_H_ -#define MSP_GL_SCENE_H_ - -#include -#include "renderable.h" - -namespace Msp { -namespace GL { - -class Scene: public Renderable -{ -private: - std::set renderables; - -public: - void add(const Renderable &); - void remove(const Renderable &); - - virtual bool has_pass(const Tag &) const { return true; } - virtual void render(const Tag &tag=Tag()) const; -}; - -} // namespace GL -} // namespace Msp - -#endif