mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-07-15 09:05:51 +00:00
18 lines
244 B
C++
18 lines
244 B
C++
#ifndef _CTEXTURE_HPP
|
|
#define _CTEXTURE_HPP
|
|
|
|
#include "gx_enum.h"
|
|
#include "types.h"
|
|
|
|
class CTexture {
|
|
public:
|
|
enum EClampMode {
|
|
Clamp,
|
|
Repeat,
|
|
Mirror,
|
|
};
|
|
|
|
void Load(GXTexMapID texMapId, EClampMode clampMode) const;
|
|
};
|
|
|
|
#endif |