re3-mirror/src/renderer/PlayerSkin.h

15 lines
324 B
C
Raw Normal View History

2019-07-03 16:26:15 +01:00
#pragma once
2019-09-28 19:39:58 +01:00
#define DEFAULT_SKIN_NAME "$$\"\""
2019-07-03 16:26:15 +01:00
class CPlayerSkin
{
2019-09-28 19:39:58 +01:00
static int m_txdSlot;
2019-07-03 16:26:15 +01:00
public:
2019-09-28 19:39:58 +01: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 16:26:15 +01:00
};