re3-wiiu/src/peds/CivilianPed.h

29 lines
683 B
C
Raw Normal View History

2019-06-02 17:13:56 +02:00
#pragma once
#include "Ped.h"
class CCivilianPed : public CPed
{
2020-09-23 22:29:56 +02:00
bool m_bLookForVacantCars;
uint32 m_nLookForVacantCarsCounter;
bool m_bStealCarEvenIfThereIsSomeoneInIt; // unused
bool m_bJustStoleACar;
uint32 m_nStealWishList[16];
2020-05-14 12:46:11 +02:00
bool m_bAttractorUnk;
int32 m_nAttractorCycleState;
2019-06-02 17:13:56 +02:00
public:
2020-02-16 03:15:58 +01:00
CCivilianPed(ePedType, uint32);
~CCivilianPed(void) { }
void CivilianAI(void);
void ProcessControl(void);
2020-05-14 12:46:11 +02:00
void UseNearbyAttractors(void);
2020-05-16 09:53:20 +02:00
void FindNearbyAttractorsSectorList(CPtrList&, float&, C2dEffect*&, CEntity*&);
2020-05-14 12:46:11 +02:00
bool IsAttractedTo(int8);
2020-09-23 22:29:56 +02:00
void EnterVacantNearbyCars(void);
bool IsOnStealWishList(int32);
2019-06-02 17:13:56 +02:00
};
#ifndef PED_SKIN
VALIDATE_SIZE(CCivilianPed, 0x53C);
#endif