#pragma once
namespace BWAPI
{
/// Contains flag enumerations for BWAPI.
/// @see Game::enableFlag, Game::isFlagEnabled
namespace Flag
{
/// Contains flag enumerations for BWAPI.
/// @see Game::enableFlag, Game::isFlagEnabled
enum Enum
{
/// Enable to get information about all units on the map, not just the visible units.
CompleteMapInformation = 0,
/// Enable to get information from the user (what units are selected, chat messages
/// the user enters, etc)
UserInput = 1,
/// The maximum number of different flags available.
Max
};
}
}