aboutsummaryrefslogtreecommitdiffstats
path: root/src/powerup.hpp
blob: a88a0352718e4e7b47f8208d912ee6a2423ca932 (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef POWERUP_H_
#define POWERUP_H_

class Powerup {
   public:
    Powerup();
    virtual ~Powerup();
};

#endif  // POWERUP_H_