From 9f6cdb671ca3c045085bd8eed623e0a797894e1f Mon Sep 17 00:00:00 2001 From: Joursoir Date: Sat, 12 Dec 2020 12:41:39 +0000 Subject: GUI feature: handle players and online info from server, show it; fix: close app; --- src/client/dimensions_client.hpp | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/client/dimensions_client.hpp (limited to 'src/client/dimensions_client.hpp') 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 -- cgit v1.2.3-18-g5258