mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-03-22 19:18:14 +05:00
10 lines
129 B
C++
10 lines
129 B
C++
#pragma once
|
|
using namespace std;
|
|
|
|
class GuiMessage
|
|
{
|
|
public:
|
|
wstring string;
|
|
int ticks;
|
|
GuiMessage(const wstring& string);
|
|
}; |