summaryrefslogtreecommitdiffstats
path: root/src/core/PlayerInfo.h
diff options
context:
space:
mode:
authoraap <aap@papnet.eu>2020-12-18 13:50:37 +0100
committeraap <aap@papnet.eu>2020-12-18 13:50:37 +0100
commit55cf1a37cbce81db5b32264cfb4ebfa0a9793017 (patch)
tree9273d77a5fdffc4bc70cf7439fedb7935da024d6 /src/core/PlayerInfo.h
parentlittle cleanup and synch on templates and config (diff)
parentMerge pull request #889 from aap/miami (diff)
downloadre3-55cf1a37cbce81db5b32264cfb4ebfa0a9793017.tar
re3-55cf1a37cbce81db5b32264cfb4ebfa0a9793017.tar.gz
re3-55cf1a37cbce81db5b32264cfb4ebfa0a9793017.tar.bz2
re3-55cf1a37cbce81db5b32264cfb4ebfa0a9793017.tar.lz
re3-55cf1a37cbce81db5b32264cfb4ebfa0a9793017.tar.xz
re3-55cf1a37cbce81db5b32264cfb4ebfa0a9793017.tar.zst
re3-55cf1a37cbce81db5b32264cfb4ebfa0a9793017.zip
Diffstat (limited to 'src/core/PlayerInfo.h')
-rw-r--r--src/core/PlayerInfo.h21
1 files changed, 17 insertions, 4 deletions
diff --git a/src/core/PlayerInfo.h b/src/core/PlayerInfo.h
index 68a50c82..a3896ebb 100644
--- a/src/core/PlayerInfo.h
+++ b/src/core/PlayerInfo.h
@@ -84,13 +84,12 @@ public:
bool m_bDriveByAllowed;
uint8 m_nBustedAudioStatus;
int16 m_nCurrentBustedAudio;
+#ifdef GTA_PC
char m_aSkinName[32];
RwTexture *m_pSkinTexture;
+#endif
void MakePlayerSafe(bool);
- void LoadPlayerSkin();
- void DeletePlayerSkin();
- void SetPlayerSkin(char* skin);
const CVector &GetPos();
void Process(void);
void KillPlayer(void);
@@ -107,5 +106,19 @@ public:
void SavePlayerInfo(uint8 *buf, uint32* size);
void FindClosestCarSectorList(CPtrList&, CPed*, float, float, float, float, float*, CVehicle**);
- ~CPlayerInfo() { };
+#ifdef GTA_PC
+ void LoadPlayerSkin();
+ void SetPlayerSkin(const char *skin);
+ void DeletePlayerSkin();
+#endif
};
+
+CPlayerPed *FindPlayerPed(void);
+CVehicle *FindPlayerVehicle(void);
+CVehicle *FindPlayerTrain(void);
+CEntity *FindPlayerEntity(void);
+CVector FindPlayerCoors(void);
+const CVector &FindPlayerSpeed(void);
+const CVector &FindPlayerCentreOfWorld(int32 player);
+const CVector &FindPlayerCentreOfWorld_NoSniperShift(void);
+float FindPlayerHeading(void); \ No newline at end of file