2019-09-23 07:50:21 +08:00
|
|
|
#ifndef CHATWIDGET_H
|
|
|
|
#define CHATWIDGET_H
|
|
|
|
#include "../common/FloatRGBA.h"
|
|
|
|
#include "../msvc/wstring.h"
|
2019-10-06 04:08:12 +08:00
|
|
|
#include "../plasma/Widget.h"
|
2019-09-23 07:50:21 +08:00
|
|
|
namespace cube {
|
2019-10-06 04:08:12 +08:00
|
|
|
class ChatWidget : public plasma::Widget {
|
2019-09-23 07:50:21 +08:00
|
|
|
public:
|
2019-10-06 04:08:12 +08:00
|
|
|
_BYTE gap1A8[24];
|
|
|
|
msvc::wstring typebox_text;
|
|
|
|
_BYTE gap1E0[15];
|
|
|
|
char end;
|
|
|
|
|
|
|
|
|
2019-10-10 20:18:02 +08:00
|
|
|
void PrintMessage(const wchar_t* message, FloatRGBA* color);
|
|
|
|
void PrintMessage(const wchar_t* message);
|
|
|
|
void PrintMessage(const wchar_t* message, char red, char green, char blue);
|
2019-09-23 07:50:21 +08:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // CHATWIDGET_H
|