aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/game.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/interfaces/game.hpp')
-rw-r--r--src/interfaces/game.hpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/interfaces/game.hpp b/src/interfaces/game.hpp
index c99c01f..6836dbd 100644
--- a/src/interfaces/game.hpp
+++ b/src/interfaces/game.hpp
@@ -11,9 +11,11 @@
class IGame
{
public:
- virtual ~IGame() = default;
+ virtual ~IGame() noexcept = default;
- virtual void on_start() = 0;
+ virtual void on_start() noexcept = 0;
+
+ virtual void on_update() noexcept = 0;
virtual void on_exit() const noexcept = 0;