IGameServer.h 157 B

12345678910111213
  1. #ifndef IGAMESERVER_H
  2. #define IGAMESERVER_H
  3. class IGameServer
  4. {
  5. public:
  6. virtual ~IGameServer() = default;
  7. virtual void stop() = 0;
  8. };
  9. #endif