OSDN Git Service

rm latex/
[moflib/moflib.git] / oldmof / SceneGraph.hpp
1 #ifndef SCENE_GRAPH_HPP
2 #define SCENE_GRAPH_HPP
3
4
5
6 namespace mof{
7
8
9
10 class SceneGraph 
11 {
12 public:
13         virtual ~SceneGraph(){}
14         virtual bool isVisible() const = 0;
15         virtual void update() = 0;
16         virtual void draw() const = 0;
17         //virtual bool isDisposable() const = 0;
18
19 };
20
21 }
22
23 #endif