mirror of
https://github.com/GTAmodding/re3.git
synced 2025-10-10 14:50:33 +00:00
CStreaming done, hopefully
This commit is contained in:
parent
857cef776d
commit
a6fe606ce6
9 changed files with 387 additions and 188 deletions
|
@ -3001,6 +3001,22 @@ CPed::CanBeDeleted(void)
|
|||
}
|
||||
}
|
||||
|
||||
//--MIAMI: done
|
||||
bool
|
||||
CPed::CanBeDeletedEvenInVehicle(void)
|
||||
{
|
||||
switch (CharCreatedBy) {
|
||||
case RANDOM_CHAR:
|
||||
return true;
|
||||
case MISSION_CHAR:
|
||||
return false;
|
||||
case TODO_CHAR:
|
||||
return false;
|
||||
default:
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
// --MIAMI: Done
|
||||
bool
|
||||
CPed::CanPedDriveOff(void)
|
||||
|
|
|
@ -911,6 +911,7 @@ public:
|
|||
bool IsPedInControl(void);
|
||||
bool CanPedDriveOff(void);
|
||||
bool CanBeDeleted(void);
|
||||
bool CanBeDeletedEvenInVehicle(void);
|
||||
bool CanStrafeOrMouseControl(void);
|
||||
bool CanPedReturnToState(void);
|
||||
void SetMoveState(eMoveState);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue