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