RType
main.cpp
Go to the documentation of this file.
1 /*
2 ** EPITECH PROJECT, 2023
3 ** RType
4 ** File description:
5 ** main.cpp
6 */
7 
8 #include "../../networking/client/ClientSocket.hpp"
9 #include "ClientCore.hpp"
10 #include <iostream>
11 
12 int main()
13 {
14  ClientCore core;
15  core.run();
16 }