mirror of
https://github.com/emu-russia/pureikyubu.git
synced 2025-04-02 10:42:15 -04:00
15 lines
124 B
C++
15 lines
124 B
C++
// Texture cache
|
|
|
|
#pragma once
|
|
|
|
namespace GX
|
|
{
|
|
|
|
class TextureCache
|
|
{
|
|
public:
|
|
TextureCache();
|
|
~TextureCache();
|
|
};
|
|
|
|
}
|