GlPortal Class Reference  0.1.1
Source code documentation of the free and open 3D action puzzle game.
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
HandleGameFunction.hpp
Go to the documentation of this file.
1 #ifndef RADIX_HANDLEGAMEFUNCTION_HPP
2 #define RADIX_HANDLEGAMEFUNCTION_HPP
3 
4 #include <functional>
5 
6 namespace radix {
7 
8 class BaseGame;
9 
10 using HandleGameFunction = std::function<void (BaseGame &game)>;
11 
12 } /* namespace radix */
13 
14 #endif /* RADIX_HANDLEGAMEFUNCTION_HPP */
Definition: GameController.hpp:7
std::function< void(BaseGame &game)> HandleGameFunction
Definition: HandleGameFunction.hpp:10