GameServer.h 150 B

12345678910
  1. #ifndef GAMESERVER_H
  2. #define GAMESERVER_H
  3. #include "common/utils/Types.h"
  4. namespace GameServer {
  5. void start(u16 port, u16 maxClients);
  6. }
  7. #endif