TDME2 1.9.121
ScreenController.h
Go to the documentation of this file.
1#pragma once
2
3#include <tdme/tdme.h>
6
8
9/**
10 * Screen controller, which connects GUI screen definition with code
11 * @author Andreas Drewke
12 * @version $Id$
13 */
15{
16 /**
17 * Destructor
18 */
19 virtual ~ScreenController() {}
20
21 /**
22 * @return screen node
23 */
25
26 /**
27 * Init
28 */
29 virtual void initialize() = 0;
30
31 /**
32 * Dispose
33 */
34 virtual void dispose() = 0;
35
36};
GUI screen node that represents a screen that can be rendered via GUI system.
Definition: GUIScreenNode.h:57
Screen controller, which connects GUI screen definition with code.