This repository has been archived on 2023-07-11. You can view files and clone it, but cannot push or open issues or pull requests.
BWMirror-Generator/bwapi4-includes/BWAPI/TournamentAction.h

55 lines
1.1 KiB
C
Raw Normal View History

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