1
0
Fork 0
mirror of https://git.rip/DMCA_FUCKER/re3.git synced 2024-06-18 11:43:12 +00:00
re3/src/collision/TempColModels.h

30 lines
740 B
C
Raw Normal View History

2019-05-28 06:39:36 +00:00
#pragma once
#include "ColModel.h"
2019-05-28 06:39:36 +00:00
class CTempColModels
{
public:
2021-01-24 16:14:16 +00:00
CColModel ms_colModelPed1;
CColModel ms_colModelBBox;
CColModel ms_colModelWeapon;
2020-04-17 05:54:14 +00:00
static CColModel ms_colModelPed2;
static CColModel ms_colModelBumper1;
static CColModel ms_colModelWheel1;
static CColModel ms_colModelPanel1;
static CColModel ms_colModelBodyPart2;
static CColModel ms_colModelBodyPart1;
static CColModel ms_colModelCutObj[10];
2020-04-17 05:54:14 +00:00
static CColModel ms_colModelPedGroundHit;
static CColModel ms_colModelBoot1;
static CColModel ms_colModelDoor1;
static CColModel ms_colModelBonnet1;
2021-01-24 16:14:16 +00:00
static CColModel ms_colModelFerryDocked;
2019-08-15 14:51:39 +00:00
2021-01-24 16:14:16 +00:00
void Initialise(void);
void Write(base::cRelocatableChunkWriter &writer);
2019-05-28 06:39:36 +00:00
};
2021-01-24 16:14:16 +00:00
extern CTempColModels *gpTempColModels;