mirror of
https://github.com/zeldaret/tp
synced 2026-05-23 06:54:28 -04:00
a6e76c0841
* some wii OS fixes * remove old dol2asm comments * remove dol2asm.h * remove function address comments * normalize ATTRIBUTE_ALIGN usage * DECL_WEAK macro * fix gcc attribute weak macro * wrap more mwcc specific things in ifdefs * fixes * fix revo sdk version flags * fixes
15 lines
289 B
C++
15 lines
289 B
C++
#ifndef JPARESOURCELOADER_H
|
|
#define JPARESOURCELOADER_H
|
|
|
|
#include "dolphin/types.h"
|
|
|
|
class JPAResourceManager;
|
|
|
|
class JPAResourceLoader {
|
|
public:
|
|
JPAResourceLoader(u8 const*, JPAResourceManager*);
|
|
void load_jpc(u8 const*, JPAResourceManager*);
|
|
};
|
|
|
|
#endif /* JPARESOURCELOADER_H */
|