26 lines
259 B
C++
26 lines
259 B
C++
//
|
|
// Created by Adniklastrator on 2015-09-22.
|
|
//
|
|
|
|
#ifndef DAYDREAM_CPOWERUP_H
|
|
#define DAYDREAM_CPOWERUP_H
|
|
|
|
#include "Core/Component.h"
|
|
|
|
namespace dd
|
|
{
|
|
|
|
namespace Components
|
|
{
|
|
|
|
struct PowerUp : Component
|
|
{
|
|
int Type;
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif //DAYDREAM_CPOWERUP_H
|