summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAki <please@ignore.pl>2022-04-18 12:45:36 +0200
committerAki <please@ignore.pl>2022-04-18 12:45:36 +0200
commite6cf2ca8f9f4e07c208247ce70e56a785021979f (patch)
tree8f669a8b34bc2db6d0af7f5a11047252c49db413
parent97975da88cb25952af0c5ec75c130c66595d1807 (diff)
downloadbullethell2022-e6cf2ca8f9f4e07c208247ce70e56a785021979f.zip
bullethell2022-e6cf2ca8f9f4e07c208247ce70e56a785021979f.tar.gz
bullethell2022-e6cf2ca8f9f4e07c208247ce70e56a785021979f.tar.bz2
Added missing destructor
-rw-r--r--Controller.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Controller.h b/Controller.h
index 4839656..938847d 100644
--- a/Controller.h
+++ b/Controller.h
@@ -5,5 +5,6 @@
struct Controller
{
+ virtual ~Controller() = default;
virtual Vector2 direction() = 0;
};