Files
squidout/include/Game/CLife.h
T
2015-10-22 15:42:28 +02:00

28 lines
300 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;
float SinusAltitude = 1;
bool Left = false;
};
}
}
#endif //DAYDREAM_CLIFE_H