1
0
Fork 0
mirror of https://git.rip/DMCA_FUCKER/re3.git synced 2024-06-14 22:53:12 +00:00
re3/src/render/PlayerSkin.h

15 lines
324 B
C
Raw Normal View History

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