10 lines
116 B
C++
10 lines
116 B
C++
#ifndef POWERUP_H
|
|
#define POWERUP_H
|
|
#include "ObjectItem.hpp"
|
|
|
|
class PowerUp : ObjectItem {
|
|
|
|
};
|
|
|
|
#endif //POWERUP_H
|