summaryrefslogtreecommitdiffstats
path: root/src/core/PlayerSkin.h
blob: 2d82ec12a5daf4eb539f91d4d2f8e6d30fff9432 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#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();
};