26 lines
278 B
C++
26 lines
278 B
C++
//
|
|
// Created by Adniklastrator on 2015-10-12.
|
|
//
|
|
|
|
#ifndef DAYDREAM_CINKBLASTERBRICK_H
|
|
#define DAYDREAM_CINKBLASTERBRICK_H
|
|
|
|
#include "Core/Component.h"
|
|
|
|
namespace dd
|
|
{
|
|
|
|
namespace Components
|
|
{
|
|
|
|
struct InkBlasterBrick : Component
|
|
{
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif //DAYDREAM_CINKBLASTERBRICK_H
|