27 lines
264 B
C++
27 lines
264 B
C++
//
|
|
// Created by Adniklastrator on 2015-10-15.
|
|
//
|
|
|
|
#ifndef DAYDREAM_CKRAKEN_H
|
|
#define DAYDREAM_CKRAKEN_H
|
|
|
|
#include "Core/Component.h"
|
|
|
|
namespace dd
|
|
{
|
|
|
|
namespace Components
|
|
{
|
|
|
|
struct Kraken : Component {
|
|
|
|
int Health = 10;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif //DAYDREAM_CKRAKEN_H
|