prime/include/Kyoto/Graphics/CTexture.hpp
Luke Street bed1bb88de Reorganize includes to match asm
Former-commit-id: 848752477e6833629bb0ce30125ca6f5dbffccd1
2022-07-18 18:42:58 -04:00

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