Files
dusklight/include/d/d_msg_unit.h
T
TakaRikka 3af421d7b6 cleanup d_meter2_info / little JMessage work (#2460)
* d_meter2_info cleanup

* parseBlock_next matching
2025-05-28 14:04:30 +03:00

21 lines
450 B
C++

#ifndef D_MSG_D_MSG_UNIT_H
#define D_MSG_D_MSG_UNIT_H
#include "JSystem/JMessage/JMessage.h"
class dMsgUnit_c {
public:
/* 80238C94 */ dMsgUnit_c();
/* 80238CEC */ void setTag(int, int, char*, bool);
/* 80238CA4 */ virtual ~dMsgUnit_c();
};
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);
}
#endif /* D_MSG_D_MSG_UNIT_H */