2021-03-28 22:49:05 +02:00
|
|
|
#ifndef D_MSG_D_MSG_UNIT_H
|
|
|
|
|
#define D_MSG_D_MSG_UNIT_H
|
|
|
|
|
|
2025-05-28 04:04:30 -07:00
|
|
|
#include "JSystem/JMessage/JMessage.h"
|
2021-03-28 22:49:05 +02:00
|
|
|
|
2023-02-25 18:23:13 -08:00
|
|
|
class dMsgUnit_c {
|
|
|
|
|
public:
|
2025-11-30 14:23:42 -08:00
|
|
|
dMsgUnit_c();
|
|
|
|
|
void setTag(int, int, char*, bool);
|
2023-02-25 18:23:13 -08:00
|
|
|
|
2025-11-30 14:23:42 -08:00
|
|
|
virtual ~dMsgUnit_c();
|
2023-02-25 18:23:13 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
extern dMsgUnit_c g_msg_unit;
|
|
|
|
|
|
|
|
|
|
inline void dMsgUnit_setTag(int param_0, int param_1, char* param_2) {
|
|
|
|
|
g_msg_unit.setTag(param_0, param_1, param_2, true);
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-28 22:49:05 +02:00
|
|
|
#endif /* D_MSG_D_MSG_UNIT_H */
|