]> git.lizzy.rs Git - dragonblocks_alpha.git/blob - src/client/scene.h
Rename wetness to humidity
[dragonblocks_alpha.git] / src / client / scene.h
1 #ifndef _SCENE_H_
2 #define _SCENE_H_
3
4 #include "client/object.h"
5
6 bool scene_init();
7 void scene_deinit();
8 void scene_add_object(Object *obj);
9 void scene_render();
10 void scene_on_resize(int width, int height);
11
12 #endif