mirror of
https://github.com/halpz/re3.git
synced 2025-06-29 13:26:19 +00:00
CPhysical almost done
This commit is contained in:
@ -203,9 +203,14 @@ enum
|
||||
MI_FATFEMALE01,
|
||||
MI_FATFEMALE02,
|
||||
|
||||
MI_PREDATOR = 120,
|
||||
MI_RHINO = 122,
|
||||
MI_TRAIN = 124,
|
||||
MI_COACH = 127,
|
||||
MI_RCBANDIT = 131,
|
||||
MI_SPEEDER = 142,
|
||||
MI_REEFER = 143,
|
||||
MI_GHOST = 150,
|
||||
|
||||
MI_CAR_DOOR = 190,
|
||||
MI_CAR_BUMPER,
|
||||
@ -248,3 +253,13 @@ IsBodyPart(int16 id)
|
||||
{
|
||||
return id == MI_BODYPARTA || id == MI_BODYPARTB;
|
||||
}
|
||||
|
||||
// This is bad and should perhaps not be used
|
||||
inline bool
|
||||
IsBoatModel(int16 id)
|
||||
{
|
||||
return id == MI_PREDATOR ||
|
||||
id == MI_REEFER ||
|
||||
id == MI_SPEEDER ||
|
||||
id == MI_GHOST;
|
||||
}
|
||||
|
Reference in New Issue
Block a user