BWAPI
Skynet/Skynet/OperatorType.h
Go to the documentation of this file.
00001 #pragma once
00002 
00003 #include "TypeSafeEnum.h"
00004 
00005 struct OperatorTypeDef
00006 {
00007         enum type
00008         {
00009                 None,
00010                 Or,
00011                 And
00012         };
00013 };
00014 typedef SafeEnum<OperatorTypeDef> OperatorType;
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines