Files
ss/include/toBeSorted/actor_event.h
T
robojumper a3472ab02d Attempt d_a_obj_tower_hand_D101 (#96)
* Attempt d_a_obj_tower_hand_D101

* dAcOTowerHandD101_c probably equivalent

* just two funcs, couldnt really do much to the rest

---------

Co-authored-by: elijah-thomas774 <elijahthomas774@gmail.com>
2024-11-09 11:44:05 -05:00

24 lines
440 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);
u32 getCurrentEventCommand() const;
void advanceNext();
bool isAdvance();
private:
u8 field_0x00[0x50 - 0x00];
};
#endif