20 lines
246 B
C
20 lines
246 B
C
![]() |
#pragma once
|
||
|
|
||
|
#include <BWAPI.h>
|
||
|
|
||
|
/**
|
||
|
* UnitOrder contains a single whole order
|
||
|
*/
|
||
|
|
||
|
namespace BWAPIC
|
||
|
{
|
||
|
struct UnitCommand
|
||
|
{
|
||
|
BWAPI::UnitCommandType type;
|
||
|
int unitIndex;
|
||
|
int targetIndex;
|
||
|
int x;
|
||
|
int y;
|
||
|
int extra;
|
||
|
};
|
||
|
}
|