Files
ss/include/toBeSorted/actor_event.h
T
robojumper 0f9ef3d33c Some main dol actor splits, dAcOsw_c OK, dTgSw_c OK (#34)
* Some main dol actor splits and code

* Match dAcOsw_c

* diff clean

* Fix

* dTgSw_c OK
2024-09-25 18:34:35 -04:00

21 lines
354 B
C++

#ifndef ACTOR_EVENT_H
#define ACTOR_EVENT_H
#include <common.h>
#include <d/a/d_a_base.h>
#include <toBeSorted/event.h>
class ActorEventRelated {
public:
ActorEventRelated(dAcBase_c &owner, void *);
~ActorEventRelated();
bool isThisActorInEvent();
void scheduleEvent(Event &, u32);
private:
u8 field_0x00[0x50 - 0x00];
};
#endif