diff options
author | HampusM <hampus@hampusmat.com> | 2022-06-12 18:23:10 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2022-06-13 17:57:02 +0200 |
commit | 521ef3688069f5fc6b06a835454404fddaca6e80 (patch) | |
tree | dda147c27d8932697a12f02a78232382026659b9 /src/interfaces | |
parent | 7399afb9ec9776dfa131dbf27ed6fb7524aec81b (diff) |
fix: add statusline length check
Diffstat (limited to 'src/interfaces')
-rw-r--r-- | src/interfaces/game.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interfaces/game.hpp b/src/interfaces/game.hpp index b6d7f36..6d0251f 100644 --- a/src/interfaces/game.hpp +++ b/src/interfaces/game.hpp @@ -14,7 +14,7 @@ class IGame public: virtual ~IGame() noexcept = default; - virtual void on_start() noexcept = 0; + virtual void on_start() = 0; virtual void on_update() noexcept = 0; |