Python: handle null pointers (represented as None in python).
[fail.git] / scenegraph / renderable.h
blobf9012ff751fa1ab15d05cd3eb56febf4d14b1332
1 #ifndef AWFUL_SCENEGRAPH_RENDERABLE_H_
2 #define AWFUL_SCENEGRAPH_RENDERABLE_H_
4 #include "common.h"
6 namespace sluggish
8 class Renderable : public RefCounted
10 public:
11 virtual ~Renderable()
15 virtual void eval() = 0;
19 #endif