aboutsummaryrefslogtreecommitdiffstats
path: root/src/powerup.hpp
diff options
context:
space:
mode:
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_