blob: 9c86f88610cd97ba9f4b5e0ab54f0bae079c8eda (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
#ifndef D_A_TALK_H
#define D_A_TALK_H
#include "f_op/f_op_actor_mng.h"
#include "d/d_msg_flow.h"
/**
* @ingroup actors-unsorted
* @class daTalk_c
* @brief Talk (Unused?)
*
* @details
*
*/
class daTalk_c : public fopAc_ac_c {
public:
~daTalk_c();
int create();
int execute();
int draw();
void setStatus(u16);
u16 getStatus();
u32 messageSet();
private:
/* 0x568 */ dMsgFlow_c mMsgFlow;
/* 0x5B4 */ u32 mMessageID;
};
STATIC_ASSERT(sizeof(daTalk_c) == 0x5B8);
#endif /* D_A_TALK_H */
|