]> git.localhorst.tv Git - blank.git/blob - src/ui/ClientController.hpp
try to cleanly destruct world
[blank.git] / src / ui / ClientController.hpp
1 #ifndef BLANK_UI_CLIENTCONTROLLER_HPP_
2 #define BLANK_UI_CLIENTCONTROLLER_HPP_
3
4
5 namespace blank {
6
7 struct ClientController {
8
9         virtual void SetAudio(bool) = 0;
10         virtual void SetVideo(bool) = 0;
11         virtual void SetHUD(bool) = 0;
12         virtual void SetDebug(bool) = 0;
13
14         virtual void Exit() = 0;
15
16 };
17
18 }
19
20 #endif