summaryrefslogtreecommitdiffstats
path: root/game/client/gui/chat.hh
diff options
context:
space:
mode:
Diffstat (limited to 'game/client/gui/chat.hh')
-rw-r--r--game/client/gui/chat.hh21
1 files changed, 21 insertions, 0 deletions
diff --git a/game/client/gui/chat.hh b/game/client/gui/chat.hh
new file mode 100644
index 0000000..b56681e
--- /dev/null
+++ b/game/client/gui/chat.hh
@@ -0,0 +1,21 @@
+#ifndef CLIENT_CHAT_HH
+#define CLIENT_CHAT_HH 1
+#pragma once
+
+namespace gui::client_chat
+{
+void init(void);
+void init_late(void);
+void shutdown(void);
+void update(void);
+void layout(void);
+} // namespace gui::client_chat
+
+namespace gui::client_chat
+{
+void clear(void);
+void refresh_timings(void);
+void print(const std::string& string);
+} // namespace gui::client_chat
+
+#endif // CLIENT_CHAT_HH