From da4e3c6509fa6e00f5bbcb3a34607dd966650d1a Mon Sep 17 00:00:00 2001 From: Paweł Redman Date: Sat, 16 Dec 2017 19:23:01 +0100 Subject: Clean up the virtual dtor mess. --- src/game/game.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/game/game.cpp') diff --git a/src/game/game.cpp b/src/game/game.cpp index 35cb90c..35d66ec 100644 --- a/src/game/game.cpp +++ b/src/game/game.cpp @@ -9,6 +9,10 @@ entity_t::entity_t(game::state_t *game_, int type_) : world::entity_t(type_) game = game_; } +entity_t::~entity_t(void) +{ +} + void entity_t::destroy(void) { unlink(); -- cgit