Files
squidout/include/Game/CLife.h
T
PlatinumSkink 5ee5400a28 StyleGuide Fix
2015-09-15 18:48:26 +02:00

27 lines
255 B
C++

//
// Created by Adniklastrator on 2015-09-15.
//
#ifndef DAYDREAM_CLIFE_H
#define DAYDREAM_CLIFE_H
#include "Core/Component.h"
namespace dd
{
namespace Components
{
struct Life : Component {
int Number = 0;
};
}
}
#endif //DAYDREAM_CLIFE_H