From 486ca3846b46dc229e5807968578809766ec1991 Mon Sep 17 00:00:00 2001 From: HampusM Date: Wed, 23 Mar 2022 19:41:31 +0100 Subject: feat: implement generations & multithreading --- src/interfaces/game.hpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/interfaces/game.hpp') 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; -- cgit v1.2.3-18-g5258