summaryrefslogtreecommitdiffstats
path: root/src/PedStat.h
blob: 23c75a2bee3fb5a2ae7f08084e4418fb71030ffb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#pragma once
#include "common.h"

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;
	uint8 unknown1;
	uint8 unknown2;
};

static_assert(sizeof(PedStat) == 0x34, "PedStat: error");