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/Flag.h

24 lines
723 B
C
Raw Normal View History

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