GameServer.h 155 B

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