mirror of
https://github.com/zeldaret/ss
synced 2026-05-25 15:25:13 -04:00
392145bf3d
* d_a_obj_appear_bridge - weak function order issue * Mark as nonmatching for now * Name unk IScnObjCallback funcs --------- Co-authored-by: elijah-thomas774 <elijahthomas774@gmail.com>
26 lines
496 B
C++
26 lines
496 B
C++
#ifndef EVENT_H
|
|
#define EVENT_H
|
|
|
|
#include <common.h>
|
|
|
|
class Event {
|
|
public:
|
|
void *unk;
|
|
u32 eventFlags;
|
|
s32 roomid;
|
|
s32 toolDataid;
|
|
char eventName[32];
|
|
void *eventZevData;
|
|
void *callback1;
|
|
void *callback2;
|
|
|
|
public:
|
|
/** 0x800A0C40 */
|
|
Event(char *eventName, u32 unk, u32 eventFlags, void *callback1, void *callback2);
|
|
Event(u32 eventId, s32 roomId, u32 eventFlags, void *callback1, void *callback2);
|
|
/** 0x800A1240 */
|
|
virtual ~Event();
|
|
};
|
|
|
|
#endif
|