aboutsummaryrefslogtreecommitdiffstats
path: root/src/powerup.hpp
blob: ce149979074fc3d5def21fb546c7ed73f330359c (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_