16 lines
203 B
C++
16 lines
203 B
C++
#ifndef PowerUp_h__
|
|
#define PowerUp_h__
|
|
|
|
#include "Component.h"
|
|
|
|
namespace Components
|
|
{
|
|
|
|
struct PowerUp : Component
|
|
{
|
|
int Speed;
|
|
};
|
|
REGISTER_COMPONENT("PowerUp", PowerUp);
|
|
|
|
}
|
|
#endif // !PowerUp_h__
|