mirror of
https://github.com/encounter/tp.git
synced 2026-03-30 11:40:53 -07:00
a61e3491f7
* initial freezard actor struct + setActionMode OK * daE_FZ_Draw * setReflectAngle * mBoundSoundset * daE_FZ_Execute & execute * demoDelete * daE_FZ_Delete & _delete * CreateHeap * useHeapInit * cc_set * mtx_set * action WIP * way_gake_check * executeRollMove * executeMove * draw WIP * executeDamage * checkpoint * create * checkpoint * daE_FZ_c::executeWait * checkpoint * daE_FZ_c::damage_check almost done * rm asm * rm headers * setup_profile WIP + doxygen update * fix merge issues * docs fix? * fix2 * doxygen updates * setup g_profile_E_FZ, profile setup script WIP * update github actions * update progress.md
44 lines
710 B
C++
44 lines
710 B
C++
#ifndef J2DMANAGE_H
|
|
#define J2DMANAGE_H
|
|
|
|
#include "dolphin/types.h"
|
|
|
|
class JSUInputStream;
|
|
|
|
/**
|
|
* @ingroup jsystem-j2d
|
|
*
|
|
*/
|
|
struct J2DResReference {
|
|
/* 0x00 */ u16 mCount;
|
|
/* 0x02 */ u16 mOffsets[1];
|
|
|
|
/* 8030CF10 */ s8* getResReference(u16) const;
|
|
/* 8030CF44 */ char* getName(u16) const;
|
|
};
|
|
|
|
/**
|
|
* @ingroup jsystem-j2d
|
|
*
|
|
*/
|
|
struct J2DataManageLink {
|
|
/* 0x00 */ void* mData;
|
|
/* 0x04 */ char* mName;
|
|
/* 0x08 */ J2DataManageLink* mNext;
|
|
};
|
|
|
|
/**
|
|
* @ingroup jsystem-j2d
|
|
*
|
|
*/
|
|
class J2DDataManage {
|
|
private:
|
|
/* 0x00 */ J2DataManageLink* mList;
|
|
|
|
public:
|
|
/* 8030CE18 */ void* get(char const*);
|
|
/* 8030CE7C */ void* get(JSUInputStream*);
|
|
};
|
|
|
|
#endif /* J2DMANAGE_H */
|