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/c/BWAPI/Client/Command.h
2014-08-05 10:43:14 +02:00

23 lines
367 B
C++

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