mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-17 04:38:59 +00: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();
|
||
|
};
|