mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-05-29 10:24:46 +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);
|
|
}; |