mirror of
https://github.com/GTAmodding/re3.git
synced 2025-10-16 05:00:33 +00:00
ccarctrl
This commit is contained in:
parent
c86c9b3118
commit
05b01c5ff5
6 changed files with 118 additions and 27 deletions
|
@ -2,6 +2,7 @@
|
|||
#include "Timer.h"
|
||||
|
||||
class CVehicle;
|
||||
struct CPathNode;
|
||||
|
||||
enum eCarMission : uint8
|
||||
{
|
||||
|
@ -87,8 +88,8 @@ public:
|
|||
uint8 m_bStayInFastLane : 1;
|
||||
uint8 m_flag10 : 1;
|
||||
CVector m_vecDestinationCoors;
|
||||
void *m_aPathFindNodesInfo[8];
|
||||
uint16 m_nPathFindNodesCount;
|
||||
CPathNode *m_aPathFindNodesInfo[NUM_PATH_NODES_IN_AUTOPILOT];
|
||||
int16 m_nPathFindNodesCount;
|
||||
CVehicle *m_pTargetCar;
|
||||
|
||||
CAutoPilot(void) {
|
||||
|
@ -118,5 +119,6 @@ public:
|
|||
}
|
||||
|
||||
void ModifySpeed(float);
|
||||
void RemoveOnePathNode();
|
||||
};
|
||||
static_assert(sizeof(CAutoPilot) == 0x70, "CAutoPilot: error");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue