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

19 lines
384 B
C
Raw Normal View History

#pragma once
namespace BWAPI
{
namespace Flag
{
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,
Max
};
}
}