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/Client/Command.h

23 lines
367 B
C
Raw Normal View History

2014-08-05 04:43:14 -04:00
#pragma once
#include "CommandType.h"
namespace BWAPIC
{
struct Command
{
Command()
{
type = CommandType::None;
}
Command(CommandType::Enum _commandType, int _value1=0, int _value2=0)
{
type = _commandType;
value1 = _value1;
value2 = _value2;
}
CommandType::Enum type;
int value1;
int value2;
};
}