1
0
Fork 0
mirror of https://git.rip/DMCA_FUCKER/re3.git synced 2024-06-26 16:27:36 +00:00
re3/src/control/PedStats.h

24 lines
381 B
C
Raw Normal View History

#pragma once
2019-06-16 21:12:14 +00:00
struct PedStat
{
uint32 m_id;
char m_name[24];
int32 m_fleeDistance;
int32 m_headingChangeRate;
int8 m_fear;
int8 m_temper;
int8 m_lawfulness;
int8 m_sexiness;
int32 m_attackStrength;
int32 m_defendWeakness;
int16 m_flags;
};
2019-06-16 21:12:14 +00:00
static_assert(sizeof(PedStat) == 0x34, "PedStat: error");
2019-06-17 08:30:02 +00:00
class CPedStats
{
public:
static int32 GetPedStatType(char *type);
};