RType
main.cpp
Go to the documentation of this file.
1 /*
2 ** EPITECH PROJECT, 2023
3 ** R-type
4 ** File description:
5 ** R-type
6 */
7 
8 #include "ClientSocket.hpp"
9 #include <iostream>
10 
11 int main()
12 {
13  ClientSocket clientSocket;
14 
15  clientSocket.init_client("127.0.0.1", 6969);
16 
17  clientSocket.run();
18 }