mirror of
https://github.com/zeldaret/ss
synced 2026-05-26 15:45:19 -04:00
0f9ef3d33c
* Some main dol actor splits and code * Match dAcOsw_c * diff clean * Fix * dTgSw_c OK
21 lines
354 B
C++
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
|