Files
escape-the-dawn/Escape-the-Dawn/Components/Stat.h
T

16 lines
201 B
C++

#ifndef Components_Stat_h__
#define Components_Stat_h__
#include "Component.h"
namespace Components
{
struct Stat : Component
{
float Health;
bool Destroyable;
};
}
#endif // !Components_Stat_h__