render -> renderer (original name)

This commit is contained in:
Sergeanur
2021-07-18 00:03:57 +03:00
parent c8cb1ed013
commit c937bdbfea
77 changed files with 6 additions and 6 deletions

14
src/renderer/TexList.h Normal file
View File

@@ -0,0 +1,14 @@
#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();
};