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