diff options
Diffstat (limited to 'src/interfaces/game.hpp')
-rw-r--r-- | src/interfaces/game.hpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/interfaces/game.hpp b/src/interfaces/game.hpp index 0f5c895..6d247d9 100644 --- a/src/interfaces/game.hpp +++ b/src/interfaces/game.hpp @@ -33,5 +33,7 @@ using IGameFactory = std::unique_ptr<IGame> (*)( */ using IGameFactory = Factory<std::unique_ptr<IGame>( - const std::shared_ptr<IWindow> &window, const std::shared_ptr<IScene> &scene, - const std::shared_ptr<ICursorController> &cursor_controller)>; + const std::shared_ptr<IWindow> &window, + const std::shared_ptr<IScene> &scene, + const std::shared_ptr<ICursorController> &cursor_controller +)>; |