mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-25 15:05:06 -04:00
4a0aaca15e
* split J2DPane.cpp * J2DPane first pass * consolidate headers and typedef mtx * remove duplicate J2DScreen.h Co-authored-by: Pheenoh <pheenoh@gmail.com>
12 lines
304 B
C
12 lines
304 B
C
#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
|