mirror of
https://github.com/open-goal/jak-project
synced 2026-07-09 06:53:45 -04:00
13 lines
267 B
C++
13 lines
267 B
C++
#pragma once
|
|
|
|
#include "common/common_types.h"
|
|
#include "game/graphics/texture/TextureConverter.h"
|
|
|
|
class TexturePool {
|
|
public:
|
|
void handle_upload_now(const u8* tpage, int mode, const u8* memory_base, u32 s7_ptr);
|
|
|
|
private:
|
|
TextureConverter m_tex_converter;
|
|
};
|