mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-16 13:49:02 +00:00
21 lines
No EOL
504 B
C++
21 lines
No EOL
504 B
C++
#pragma once
|
|
|
|
#define DEFAULT_SKIN_NAME "$$\"\""
|
|
|
|
static RpClump *gpPlayerClump;// = *(RpClump**)0x660FF8;
|
|
static float gOldFov;// = *(float*)0x660FFC;
|
|
|
|
void LoadPlayerDff(void);
|
|
void FindPlayerDff(uint32 &offset, uint32 &size);
|
|
|
|
class CPlayerSkin
|
|
{
|
|
static int m_txdSlot;
|
|
public:
|
|
static void Initialise();
|
|
static void Shutdown();
|
|
static RwTexture *GetSkinTexture(const char *texName);
|
|
static void BeginFrontendSkinEdit();
|
|
static void EndFrontendSkinEdit();
|
|
static void RenderFrontendSkinEdit();
|
|
}; |