15 lines
385 B
C++
15 lines
385 B
C++
#ifndef CHATWIDGET_H
|
|
#define CHATWIDGET_H
|
|
#include "../common/FloatRGBA.h"
|
|
#include "../msvc/wstring.h"
|
|
namespace cube {
|
|
class ChatWidget {
|
|
public:
|
|
void PrintMessage(wchar_t* message, FloatRGBA* color);
|
|
void PrintMessage(wchar_t* message);
|
|
void PrintMessage(wchar_t* message, char red, char green, char blue);
|
|
};
|
|
}
|
|
|
|
#endif // CHATWIDGET_H
|