summaryrefslogtreecommitdiff
path: root/include/d/d_msg_unit.h
blob: 400df98f25f00d023e2f16778e5410451fb4a60f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef D_MSG_D_MSG_UNIT_H
#define D_MSG_D_MSG_UNIT_H

#include "JSystem/JMessage/JMessage.h"

class dMsgUnit_c {
public:
    dMsgUnit_c();
    void setTag(int, int, char*, bool);

    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 */