source: proiecte/SIMEO/Simeo/src/SimeoEngine/Gui.h @ 167

Last change on this file since 167 was 167, checked in by (none), 14 years ago

Simeo: added final project and also older proof of concept code.

We used Git for version control, so look at the Git repo
in SIMEO/Simeo/ for more info.

File size: 181 bytes
Line 
1#ifndef GUI_H
2#define GUI_H
3
4#include "Environment.h"
5
6class Gui
7{
8protected:
9        Environment *m_env;
10
11public:
12        Gui(Environment *env);
13        ~Gui();
14
15        virtual void update() { };
16};
17
18#endif
Note: See TracBrowser for help on using the repository browser.