diff options
Diffstat (limited to 'src/client/clui/client.cpp')
-rw-r--r-- | src/client/clui/client.cpp | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/src/client/clui/client.cpp b/src/client/clui/client.cpp deleted file mode 100644 index 83f8ef0..0000000 --- a/src/client/clui/client.cpp +++ /dev/null @@ -1,35 +0,0 @@ -#include <ncurses.h> -#include <stdlib.h> -#include <string.h> -#include <unistd.h> - -#include "../config.hpp" -#include "user.hpp" - -int main(int argc, char *argv[]) -{ - initscr(); - noecho(); - - int rows, columns; - getmaxyx(stdscr, rows, columns); - if(rows != 24 || columns != 80) { - endwin(); - printf("Please use terminal with size 24x80\n"); - return 1; - } - - Client *user = Client::Start(SERVER_IP, SERVER_PORT); - if(!user) { - endwin(); - perror("server"); - return 1; - } - - ChatRoom *room = new ChatRoom(); - user->Run(room); - delete room; - - endwin(); - return 0; -}
\ No newline at end of file |