mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-21 23:00:45 +01:00
15 lines
400 B
C++
15 lines
400 B
C++
#ifndef ESCHER_INPUT_EVENT_HANDLER_DELEGATE_H
|
|
#define ESCHER_INPUT_EVENT_HANDLER_DELEGATE_H
|
|
|
|
class InputEventHandler;
|
|
class Toolbox;
|
|
class NestedMenuController;
|
|
|
|
class InputEventHandlerDelegate {
|
|
public:
|
|
virtual Toolbox * toolboxForInputEventHandler(InputEventHandler * textInput) = 0;
|
|
virtual NestedMenuController * variableBoxForInputEventHandler(InputEventHandler * textInput) = 0;
|
|
};
|
|
|
|
#endif
|