mirror of
https://github.com/zeldaret/botw
synced 2026-06-08 20:20:12 -04:00
14 lines
185 B
C++
14 lines
185 B
C++
#pragma once
|
|
|
|
namespace ksys::res {
|
|
|
|
// TODO: very incomplete
|
|
class TextureHandleMgr {
|
|
public:
|
|
virtual ~TextureHandleMgr();
|
|
|
|
void clearAllCache();
|
|
};
|
|
|
|
} // namespace ksys::res
|