ServerCommands.cpp 199 B

123456789101112131415
  1. #include "ServerCommands.h"
  2. ServerCommands::ServerCommands() : running(true)
  3. {
  4. }
  5. bool ServerCommands::isRunning() const
  6. {
  7. return running;
  8. }
  9. void ServerCommands::stop()
  10. {
  11. running = false;
  12. }