mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 13:23:37 +00:00
8 lines
127 B
C++
8 lines
127 B
C++
#pragma once
|
|
|
|
class GuiMessage {
|
|
public:
|
|
std::wstring string;
|
|
int ticks;
|
|
GuiMessage(const std::wstring& string);
|
|
}; |