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.hpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/interfaces/game.hpp b/src/interfaces/game.hpp
index f9d851b..114f019 100644
--- a/src/interfaces/game.hpp
+++ b/src/interfaces/game.hpp
@@ -3,5 +3,7 @@
class IGame
{
public:
+ virtual ~IGame() = default;
+
virtual void run() = 0;
};