diff options
author | eray orçunus <erayorcunus@gmail.com> | 2019-08-16 18:25:02 +0200 |
---|---|---|
committer | eray orçunus <erayorcunus@gmail.com> | 2019-08-16 18:25:02 +0200 |
commit | cf8b27c453a039fdbd8ee0ebbd76a8eda38014c9 (patch) | |
tree | a1cccdd7386516fb8bb6daf7b9c491b1b12c5924 /src/peds/Ped.h | |
parent | AnimViewer fixes (diff) | |
download | re3-cf8b27c453a039fdbd8ee0ebbd76a8eda38014c9.tar re3-cf8b27c453a039fdbd8ee0ebbd76a8eda38014c9.tar.gz re3-cf8b27c453a039fdbd8ee0ebbd76a8eda38014c9.tar.bz2 re3-cf8b27c453a039fdbd8ee0ebbd76a8eda38014c9.tar.lz re3-cf8b27c453a039fdbd8ee0ebbd76a8eda38014c9.tar.xz re3-cf8b27c453a039fdbd8ee0ebbd76a8eda38014c9.tar.zst re3-cf8b27c453a039fdbd8ee0ebbd76a8eda38014c9.zip |
Diffstat (limited to 'src/peds/Ped.h')
-rw-r--r-- | src/peds/Ped.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/peds/Ped.h b/src/peds/Ped.h index 264a67a8..459d0601 100644 --- a/src/peds/Ped.h +++ b/src/peds/Ped.h @@ -574,12 +574,12 @@ public: void StartFightAttack(uint8); void SetWaitState(eWaitState, void*); bool FightStrike(CVector&); - int GetLocalDirection(CVector2D&); + int GetLocalDirection(CVector2D const &); void StartFightDefend(uint8, uint8, uint8); void PlayHitSound(CPed*); void SetFall(int, AnimationId, uint8); void SetFlee(CEntity*, int); - void SetFlee(CVector2D&, int); + void SetFlee(CVector2D const &, int); void RemoveInCarAnims(void); void CollideWithPed(CPed*); void SetDirectionToWalkAroundObject(CEntity*); @@ -698,7 +698,9 @@ public: static CVector2D &ms_vec2DFleePosition; static CPedAudioData (&CommentWaitTime)[38]; -#ifndef FINAL +#ifndef MASTER + static void SwitchDebugDisplay(void); + void DebugRenderOnePedText(void); static bool bUnusedFightThingOnPlayer; #endif }; |