2019-07-03 11:26:15 -04:00
|
|
|
#pragma once
|
|
|
|
|
2019-09-28 14:39:58 -04:00
|
|
|
#define DEFAULT_SKIN_NAME "$$\"\""
|
|
|
|
|
2019-07-03 11:26:15 -04:00
|
|
|
class CPlayerSkin
|
|
|
|
{
|
2019-09-28 14:39:58 -04:00
|
|
|
static int m_txdSlot;
|
2019-07-03 11:26:15 -04:00
|
|
|
public:
|
2019-09-28 14:39:58 -04:00
|
|
|
static void Initialise();
|
|
|
|
static void Shutdown();
|
|
|
|
static RwTexture *GetSkinTexture(const char *texName);
|
|
|
|
static void BeginFrontendSkinEdit();
|
|
|
|
static void EndFrontendSkinEdit();
|
|
|
|
static void RenderFrontendSkinEdit();
|
2019-07-03 11:26:15 -04:00
|
|
|
};
|