29 lines
392 B
C++
29 lines
392 B
C++
#pragma once
|
|
|
|
namespace BWAPI
|
|
{
|
|
namespace Tournament
|
|
{
|
|
enum ActionID
|
|
{
|
|
EnableFlag,
|
|
ChangeRace,
|
|
StartGame,
|
|
PauseGame,
|
|
ResumeGame,
|
|
LeaveGame,
|
|
RestartGame,
|
|
SetLocalSpeed,
|
|
SetTextSize,
|
|
SetLatCom,
|
|
SetGUI,
|
|
SetMap,
|
|
SetFrameSkip,
|
|
Printf,
|
|
SendText,
|
|
SetCommandOptimizationLevel
|
|
};
|
|
|
|
};
|
|
};
|