Merge branch 'master' of goat:git/laserbrain_demo
[laserbrain_demo] / src / ui_exhibit.h
1 #ifndef UI_EXHIBIT_H_
2 #define UI_EXHIBIT_H_
3
4 #include <gmath/gmath.h>
5
6 class SceneNode;
7
8 bool exui_init();
9 void exui_shutdown();
10 void exui_setnode(const SceneNode *node);
11 void exui_rotation(const Vec3 &euler);
12 void exui_scale(float s);
13
14 void exui_change_tab(int dir);
15 void exui_scroll(float delta);
16
17 bool exui_raytest(const Ray &ray);
18
19 void exui_update(float dt);
20 void exui_draw();
21
22 #endif  // UI_EXHIBIT_H_