1
0
mirror of https://github.com/blawar/GLideN64.git synced 2024-07-07 03:13:49 +00:00
GLideN64/src/ZlutTexture.h

18 lines
190 B
C
Raw Normal View History

2017-01-07 09:40:50 +00:00
#pragma once
struct CachedTexture;
class ZlutTexture
{
public:
ZlutTexture();
void init();
void destroy();
private:
CachedTexture * m_pTexture;
};
extern ZlutTexture g_zlutTexture;