mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-02 01:53:38 +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);
|
|
}; |