fixing git repo
This commit is contained in:
parent
20cb5a12f8
commit
52b5a8ee95
19 changed files with 106 additions and 10712 deletions
9
engine/src/scenes/scene.h
Normal file
9
engine/src/scenes/scene.h
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
#include "nodes.h"
|
||||
#include <list>
|
||||
struct scene{
|
||||
std::list<node> nodes;
|
||||
virtual void init() {}
|
||||
virtual void render() {}
|
||||
virtual void update() {}
|
||||
virtual void close() {}
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue