| 54 void connect (String address, String password); |
54 void connect (String address, String password); |
| 55 void set_player_names (const StringList& names); |
55 void set_player_names (const StringList& names); |
| 56 void need_refresh(); |
56 void need_refresh(); |
| 57 void tab_complete (const String& part, String complete); |
57 void tab_complete (const String& part, String complete); |
| 58 RCONSession* get_session() { return &Session; } |
58 RCONSession* get_session() { return &Session; } |
| |
59 void disconnected(); |
| 59 |
60 |
| 60 template<typename... argtypes> |
61 template<typename... argtypes> |
| 61 void print (const String& fmtstr, const argtypes&... args) |
62 void print (const String& fmtstr, const argtypes&... args) |
| 62 { |
63 { |
| 63 print_to_console (format (fmtstr, args...)); |
64 print_to_console (format (fmtstr, args...)); |