summaryrefslogtreecommitdiff
path: root/src/game/game.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/game.hpp')
-rw-r--r--src/game/game.hpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/game/game.hpp b/src/game/game.hpp
index 8949911..fce113d 100644
--- a/src/game/game.hpp
+++ b/src/game/game.hpp
@@ -153,6 +153,7 @@ namespace game {
double ttl = +INFINITY;
effect_t(game::state_t *game_);
+ virtual ~effect_t() {};
};
class fx_tracer_t : public effect_t {
@@ -160,6 +161,7 @@ namespace game {
public:
fx_tracer_t(game::state_t *game_, v2f_t x0_, v2f_t x1_);
+ ~fx_tracer_t(void) = default;
void render_to(render::state_t *render);
};
@@ -169,6 +171,7 @@ namespace game {
public:
fx_blood_t(game::state_t *game_, v2f_t x_, bool alien_);
+ ~fx_blood_t(void) = default;
void render_to(render::state_t *render);
};
};