Files
escape-the-dawn/Escape-the-Dawn/Components/Stat.h
T
2014-03-06 21:32:31 +01:00

17 lines
206 B
C++

#ifndef Stat_h__
#define Stat_h__
#include "Component.h"
namespace Components
{
struct Stat : Component
{
int Health;
bool Destroyable;
};
REGISTER_COMPONENT("Stat", Stat);
}
#endif // !Stat_h__