BWAPI
|
00001 #pragma once 00002 #include "Micro/Goals/Goal.h" 00003 00004 /*** 00005 * A helper/wrapper on top of Goal to facilitate simple attacks (pushs) 00006 */ 00007 class RegroupGoal: public Goal 00008 { 00009 private: 00010 void createMidSubgoal(); 00011 public: 00012 RegroupGoal(BWAPI::Position p, int priority = 10, int firstFrame = 0); 00013 virtual ~RegroupGoal(); 00014 virtual void RegroupGoal::achieve(); 00015 };