BWAPI
|
00001 #ifndef UNITORDER_H 00002 #define UNITORDER_H 00003 #include "BWAPI.h" 00004 #include <vector> 00005 00006 using namespace BWAPI; 00007 00008 class UnitOrder { 00009 public: 00010 UnitOrder(); 00011 UnitOrder(std::vector<std::pair<UnitType, int>> order); 00012 UnitOrder(std::pair<UnitType, int> order); 00013 std::vector<std::pair<UnitType, int>> getOrder(); 00014 private: 00015 std::vector<std::pair<UnitType, int>> order; 00016 00017 }; 00018 00019 #endif