TDME2  1.9.200
GUIInputEventHandler.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <tdme/tdme.h>
5 
6 /**
7  * GUI input event handler interface
8  * @author Andreas Drewke
9  */
11 {
12  /**
13  * Destructor
14  */
15  virtual ~GUIInputEventHandler() {}
16 
17  /**
18  * Handle input events that have not yet been processed
19  */
20  virtual void handleInputEvents() = 0;
21 
22 };
GUI input event handler interface.
virtual void handleInputEvents()=0
Handle input events that have not yet been processed.