mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/LegacyNetherFork.git
synced 2026-05-21 23:45:11 +00: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);
|
|
}; |