16 lines
210 B
C++
16 lines
210 B
C++
#ifndef Components_PowerUp_h__
|
|
#define Components_PowerUp_h__
|
|
|
|
#include "Component.h"
|
|
|
|
namespace Components
|
|
{
|
|
|
|
struct PowerUp : Component
|
|
{
|
|
float Speed;
|
|
float Duration;
|
|
};
|
|
|
|
}
|
|
#endif // !Components_PowerUp_h__
|