mirror of
https://gitlab.com/GaryOderNichts/re3-wiiu.git
synced 2024-12-04 15:04:20 +01:00
14 lines
357 B
C
14 lines
357 B
C
|
#pragma once
|
||
|
|
||
|
class CTexList
|
||
|
{
|
||
|
enum { MAX_TEXUSED = 400, };
|
||
|
static bool ms_nTexUsed[MAX_TEXUSED];
|
||
|
public:
|
||
|
static void Initialise();
|
||
|
static void Shutdown();
|
||
|
static RwTexture *SetTexture(int32 slot, char *name);
|
||
|
static int32 GetFirstFreeTexture();
|
||
|
static RwTexture *LoadFileNameTexture(char *name);
|
||
|
static void LoadGlobalTextureList();
|
||
|
};
|