summaryrefslogtreecommitdiffstats
path: root/src/client/dimensions_client.hpp
diff options
context:
space:
mode:
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