blob: 1cf8d36b49188b3e8ee2a6053d6c4d93fe84ed9d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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
|