aboutsummaryrefslogtreecommitdiffstats
path: root/src/powerup.hpp
diff options
context:
space:
mode:
authorsalaaad2 <arthurdurant263@gmail.com>2022-01-04 17:43:53 +0100
committersalaaad2 <arthurdurant263@gmail.com>2022-01-04 17:43:53 +0100
commit22383a6efdb3cfe49cd1081c648d95719b1e2eed (patch)
tree1d28f74a8f7f29202b7939973d6817f05c8d9897 /src/powerup.hpp
parentmap read from file (diff)
downloadthreshold-22383a6efdb3cfe49cd1081c648d95719b1e2eed.tar.gz
threshold-22383a6efdb3cfe49cd1081c648d95719b1e2eed.tar.bz2
threshold-22383a6efdb3cfe49cd1081c648d95719b1e2eed.tar.xz
threshold-22383a6efdb3cfe49cd1081c648d95719b1e2eed.tar.zst
threshold-22383a6efdb3cfe49cd1081c648d95719b1e2eed.zip
dumb pellet implementation
Diffstat (limited to 'src/powerup.hpp')
-rw-r--r--src/powerup.hpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/powerup.hpp b/src/powerup.hpp
new file mode 100644
index 0000000..ce14997
--- /dev/null
+++ b/src/powerup.hpp
@@ -0,0 +1,10 @@
+#ifndef POWERUP_H_
+#define POWERUP_H_
+
+class Powerup {
+ public:
+ Powerup();
+ virtual ~Powerup();
+};
+
+#endif // POWERUP_H_