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/bwapi-master/Flag.h
2014-08-05 10:43:14 +02:00

19 lines
384 B
C++

#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
};
}
}