2019-05-28 06:39:36 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "Collision.h"
|
|
|
|
|
|
|
|
class CTempColModels
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
static CColModel &ms_colModelPed1;
|
|
|
|
static CColModel &ms_colModelPed2;
|
|
|
|
static CColModel &ms_colModelBBox;
|
|
|
|
static CColModel &ms_colModelBumper1;
|
|
|
|
static CColModel &ms_colModelWheel1;
|
|
|
|
static CColModel &ms_colModelPanel1;
|
|
|
|
static CColModel &ms_colModelBodyPart2;
|
|
|
|
static CColModel &ms_colModelBodyPart1;
|
2019-09-28 14:03:00 +00:00
|
|
|
static CColModel (&ms_colModelCutObj)[5];
|
2019-05-28 06:39:36 +00:00
|
|
|
static CColModel &ms_colModelPedGroundHit;
|
|
|
|
static CColModel &ms_colModelBoot1;
|
|
|
|
static CColModel &ms_colModelDoor1;
|
|
|
|
static CColModel &ms_colModelBonnet1;
|
2019-08-15 14:51:39 +00:00
|
|
|
|
|
|
|
static void Initialise(void);
|
2019-05-28 06:39:36 +00:00
|
|
|
};
|