mirror of
https://github.com/zeldaret/ss
synced 2026-06-22 00:26:29 -04:00
16 lines
197 B
C++
16 lines
197 B
C++
#ifndef EGG_CPU_TEXTURE_H
|
|
#define EGG_CPU_TEXTURE_H
|
|
|
|
#include "rvl/GX/GXTexture.h"
|
|
namespace EGG {
|
|
|
|
class CpuTexture {
|
|
|
|
public:
|
|
void GetTexObj(GXTexObj *) const;
|
|
};
|
|
|
|
} // namespace EGG
|
|
|
|
#endif
|