mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-25 11:43:36 +00:00
10 lines
119 B
C++
10 lines
119 B
C++
#pragma once
|
|
|
|
|
|
class GuiMessage
|
|
{
|
|
public:
|
|
std::wstring string;
|
|
int ticks;
|
|
GuiMessage(const std::wstring& string);
|
|
}; |