diff options
Diffstat (limited to 'src/const_vars.hpp')
-rw-r--r-- | src/const_vars.hpp | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/const_vars.hpp b/src/const_vars.hpp index f34ab7f..a3817aa 100644 --- a/src/const_vars.hpp +++ b/src/const_vars.hpp @@ -15,8 +15,10 @@ const int max_msg_len = oneline_len * 3; // 57*3 = 171 const int lines_in_chat = 18; // === Message info === // -const int usual_msg = 0; // no first char -const int system_msg = 1; -const char system_char = '#'; +const char USUAL_CHAR = 0; +const char SYSTEM_CHAR = '#'; +const char USERS_CHAR = ';'; +const char GONLINE_CHAR = '!'; +const char RONLINE_CHAR = '&'; #endif
\ No newline at end of file |