Files
tp/include/JSystem/JUtility/JUTResource.h
T

12 lines
304 B
C
Raw Normal View History

2021-01-25 06:57:35 -08:00
#ifndef JSYSTEM_JUTILITY_RESOURCE_H
#define JSYSTEM_JUTILITY_RESOURCE_H
#include "dolphin/types.h"
struct JUTResReference {
JUTResReference() : res(NULL) {}
void* getResource(JSURandomInputStream* stream, u32 size, JKRArchive* archive);
void* res;
};
#endif // JSYSTEM_JUTILITY_RESOURCE_H