mirror of
https://github.com/GTAmodding/re3.git
synced 2025-07-14 06:54:08 +00:00
Partial RunningScript part2
This commit is contained in:
parent
51c71fffeb
commit
41dbd754de
16 changed files with 584 additions and 6 deletions
|
@ -175,6 +175,13 @@ CModelInfo::IsBoatModel(int32 id)
|
|||
((CVehicleModelInfo*)GetModelInfo(id))->m_vehicleType == VEHICLE_TYPE_BOAT;
|
||||
}
|
||||
|
||||
bool
|
||||
CModelInfo::IsBikeModel(int32 id)
|
||||
{
|
||||
return GetModelInfo(id)->m_type == MITYPE_VEHICLE &&
|
||||
((CVehicleModelInfo*)GetModelInfo(id))->m_vehicleType == VEHICLE_TYPE_BIKE;
|
||||
}
|
||||
|
||||
void
|
||||
CModelInfo::RemoveColModelsFromOtherLevels(eLevelName level)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue