mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-07-23 21:46:37 -04:00
cd401d41d6
* work on fop actor / actor mng, daalink, d_a_obj_item * d_a_title mostly decompiled * daalink / d_event / JMessage / dmsg_out_font work * msg_scrn_base / msg_scrn_boss * some work on mDo machine, d_menu_save, d_tresure, and various * remove asm * progress * finish d_menu_save / d_pane_class_alpha / d_pane_class / rename some data * rename more data * remove asm / progress * match all of d_pane_class * fixes / some dKankyo doc * bunch of j2d work. d_drawlist / d_attention cleanup * progress / asm * cleanup wip * decompile JStage * setup some more JStudio structs * set up d_demo classes * some d_demo work * cleanup dolphin os stuff * some initial dEvent documentation * some At collision documentation * match JUTConsole::doDraw * dbgs work / split up some of d_a_alink into .inc files * d_a_alink_spinner work
30 lines
597 B
C++
30 lines
597 B
C++
#ifndef OBJECT_ID_H
|
|
#define OBJECT_ID_H
|
|
|
|
#include "dolphin/types.h"
|
|
|
|
namespace JStudio {
|
|
namespace object {
|
|
|
|
struct TPRObject_ID_equal {};
|
|
|
|
struct TIDData {
|
|
public:
|
|
TIDData(const void* id, u32 id_size) : mID(id), mID_size(id_size) {}
|
|
|
|
/* 80288988 */ void isEqual(JStudio::object::TIDData const&, JStudio::object::TIDData const&);
|
|
|
|
private:
|
|
/* 0x00 */ const void* mID;
|
|
/* 0x04 */ u32 mID_size;
|
|
};
|
|
|
|
struct TObject_ID : public TIDData {
|
|
TObject_ID(const void* id, u32 id_size) : TIDData(id, id_size) {}
|
|
};
|
|
|
|
} // namespace object
|
|
} // namespace JStudio
|
|
|
|
#endif /* OBJECT_ID_H */
|