PlayerSkin small cleanup

This commit is contained in:
Sergeanur
2020-04-10 11:41:48 +03:00
parent 8917567508
commit b76172e2dd
2 changed files with 5 additions and 8 deletions

15
src/render/PlayerSkin.h Normal file
View File

@@ -0,0 +1,15 @@
#pragma once
#define DEFAULT_SKIN_NAME "$$\"\""
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();
};