Files
tp/include/d/actor/d_a_talk.h
T

33 lines
530 B
C++
Raw Normal View History

2021-03-28 22:49:05 +02:00
#ifndef D_A_TALK_H
#define D_A_TALK_H
2023-06-27 16:14:31 -07:00
#include "f_op/f_op_actor_mng.h"
2024-10-10 07:29:58 -07:00
#include "d/d_msg_flow.h"
2023-06-27 16:14:31 -07:00
2024-06-10 01:34:52 -06:00
/**
* @ingroup actors-unsorted
* @class daTalk_c
* @brief Talk (Unused?)
*
* @details
*
*/
2023-06-27 16:14:31 -07:00
class daTalk_c : public fopAc_ac_c {
public:
2025-11-30 14:23:42 -08:00
~daTalk_c();
int create();
int execute();
int draw();
void setStatus(u16);
u16 getStatus();
u32 messageSet();
2023-06-27 16:14:31 -07:00
2024-06-10 01:34:52 -06:00
private:
2023-06-27 16:14:31 -07:00
/* 0x568 */ dMsgFlow_c mMsgFlow;
/* 0x5B4 */ u32 mMessageID;
};
2021-03-28 22:49:05 +02:00
2024-06-10 01:34:52 -06:00
STATIC_ASSERT(sizeof(daTalk_c) == 0x5B8);
2021-03-28 22:49:05 +02:00
#endif /* D_A_TALK_H */