no clue :) just to push it
[demo] / src / object.cc
1 #include "object.h"
2 #include "mesh.h"
3 #include "shader.h"
4
5 Object::Object()
6 {
7         material = 0;
8         mesh = 0;
9 }
10
11 Object::~Object()
12 {
13 }