#pragma once namespace BWAPI { /// Contains a list of interruptable actions that the tournament module can allow or deny. /// @see TournamentModule::onAction namespace Tournament { /// Contains a list of interruptable actions that the tournament module can allow or deny. /// @see TournamentModule::onAction enum ActionID { /// @see Game::enableFlag EnableFlag, /// @see Game::pauseGame PauseGame, /// @see Game::resumeGame ResumeGame, /// @see Game::leaveGame LeaveGame, /// @see Game::setLocalSpeed SetLocalSpeed, /// @see Game::setTextSize SetTextSize, /// @see Game::setLatCom SetLatCom, /// @see Game::setGUI SetGUI, /// @see Game::setMap SetMap, /// @see Game::setFrameSkip SetFrameSkip, /// @see Game::printf Printf, /// @see Game::sendText SendText, /// @see Game::setCommandOptimizationLevel SetCommandOptimizationLevel }; }; };