diff options
author | salaaad2 <arthurdurant263@gmail.com> | 2022-01-04 17:43:53 +0100 |
---|---|---|
committer | salaaad2 <arthurdurant263@gmail.com> | 2022-01-04 17:43:53 +0100 |
commit | 22383a6efdb3cfe49cd1081c648d95719b1e2eed (patch) | |
tree | 1d28f74a8f7f29202b7939973d6817f05c8d9897 /src/powerup.hpp | |
parent | map read from file (diff) | |
download | threshold-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.hpp | 10 |
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_ |