diff options
Diffstat (limited to 'libjin/Core/Game.h')
-rw-r--r-- | libjin/Core/Game.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libjin/Core/Game.h b/libjin/Core/Game.h index 7ae1855..31825ba 100644 --- a/libjin/Core/Game.h +++ b/libjin/Core/Game.h @@ -17,7 +17,7 @@ namespace core public: typedef void(*onEvent)(jin::input::Event* e); - typedef void(*onUpdate)(float dt); + typedef void(*onUpdate)(); typedef void(*onDraw)(); struct Setting : SettingBase @@ -44,8 +44,8 @@ namespace core bool _running; - onlyonce bool initSystem(const SettingBase* setting); - onlyonce void quitSystem(); + bool initSystem(const SettingBase* setting); + void quitSystem(); }; |