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