BWAPI
trunk/bwapi/include/BWAPI/Client/Command.h
Go to the documentation of this file.
00001 #pragma once
00002 #include "CommandType.h"
00003 
00004 namespace BWAPIC
00005 {
00006   struct Command
00007   {
00008     Command()
00009     {
00010       type = CommandType::None;
00011     }
00012     Command(CommandType::Enum _commandType, int _value1=0, int _value2=0)
00013     {
00014       type   = _commandType;
00015       value1 = _value1;
00016       value2 = _value2;
00017     }
00018     CommandType::Enum type;
00019     int value1;
00020     int value2;
00021   };
00022 }
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines