BWAPI
|
00001 #ifndef __BUNKERAGENT_H__ 00002 #define __BUNKERAGENT_H__ 00003 00004 #include <BWAPI.h> 00005 #include "StructureAgent.h" 00006 using namespace BWAPI; 00007 using namespace std; 00008 00017 class BunkerAgent : public StructureAgent { 00018 00019 private: 00020 void checkStimTrick(BaseAgent* agent); 00021 00022 public: 00023 vector<BaseAgent*> loadedUnits; 00024 00026 BunkerAgent(Unit* mUnit); 00027 00029 ~BunkerAgent(); 00030 00032 void computeActions(); 00033 00035 string getTypeName(); 00036 00038 void printInfo(); 00039 }; 00040 00041 #endif