mirror of
https://github.com/zeldaret/tp
synced 2026-05-23 15:01:53 -04:00
6e7708652e
* 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
|