summaryrefslogtreecommitdiffstats
path: root/src/client/dimensions_client.hpp
diff options
context:
space:
mode:
authorJoursoir <chat@joursoir.net>2020-12-12 12:41:39 +0000
committerJoursoir <chat@joursoir.net>2020-12-12 12:41:39 +0000
commit9f6cdb671ca3c045085bd8eed623e0a797894e1f (patch)
treece220ee696c1e8f902c9a12cdda1f71ba7248d45 /src/client/dimensions_client.hpp
parent845c0262f4ab243748b085c2608c0e3e28799a0a (diff)
downloadwant-chat-9f6cdb671ca3c045085bd8eed623e0a797894e1f.tar.gz
want-chat-9f6cdb671ca3c045085bd8eed623e0a797894e1f.tar.bz2
want-chat-9f6cdb671ca3c045085bd8eed623e0a797894e1f.zip
GUI feature: handle players and online info from server, show it; fix: close app;
Diffstat (limited to 'src/client/dimensions_client.hpp')
-rw-r--r--src/client/dimensions_client.hpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/client/dimensions_client.hpp b/src/client/dimensions_client.hpp
new file mode 100644
index 0000000..1cf8d36
--- /dev/null
+++ b/src/client/dimensions_client.hpp
@@ -0,0 +1,16 @@
+#ifndef WC_DIMENSIONS_CLIENT_H
+#define WC_DIMENSIONS_CLIENT_H
+
+const int CHAT_LINES = 18;
+const int CHAT_COLUMNS = 57;
+
+const int PLAYERS_LINES = 10;
+const int PLAYERS_COLUMNS = 18; // must be >= max_name_len
+
+const int TIPS_LINES = 6;
+const int TIPS_COLUMNS = PLAYERS_COLUMNS;
+
+const int TIPS_LINE_GONLINE = 2;
+const int TIPS_LINE_RONLINE = 3;
+
+#endif \ No newline at end of file