ServerCommands.cpp 215 B

123456789101112
  1. #include "server/commands/ServerCommands.h"
  2. ServerCommands::ServerCommands() : running(true) {
  3. }
  4. bool ServerCommands::isRunning() const {
  5. return running;
  6. }
  7. void ServerCommands::stop() {
  8. running = false;
  9. }