R-Type  1.0.1.0
Rewrite of the R-Type game with networking ability
Loading...
Searching...
No Matches
Server.hpp
1/*
2** EPITECH PROJECT, 2023
3** Server.hpp
4** File description:
5** Server.hpp
6*/
7
8#ifndef R_TYPE_SERVER_HPP
9#define R_TYPE_SERVER_HPP
10
11#include "GameServer.hpp"
12
13struct Args {
14 std::string host;
15 std::uint16_t tcpPort;
16 std::uint16_t udpPort;
17 int maxPlayers;
18};
19
20#endif // R_TYPE_SERVER_HPP
Definition: Server.hpp:13