ServerState.h 124 B

12345678910
  1. #ifndef SERVERSTATE_H
  2. #define SERVERSTATE_H
  3. struct ServerState final {
  4. bool running;
  5. ServerState();
  6. };
  7. #endif