Python: handle null pointers (represented as None in python).
[fail.git] / scenegraph / group.h
blob79db588990907ca1fe75d0d3774fdd1ee9b0c08d
1 #ifndef AWFUL_SCENEGRAPH_GROUP_H_
2 #define AWFUL_SCENEGRAPH_GROUP_H_
4 #include "common.h"
5 #include "renderable.h"
6 #include <list>
8 namespace sluggish
10 class Group : public Renderable, public std::list< Pointer< Renderable > >
12 public:
13 virtual void eval();
17 #endif