BWAPI
|
00001 /* 00002 * FirebatAgent.cpp 00003 */ 00004 #include "FirebatAgent.h" 00005 #include "GroundAgent.h" 00006 00007 #include <BWAPI.h> 00008 00009 using BWAPI::Unit; 00010 00011 00012 FirebatAgent::FirebatAgent(Unit& u) 00013 : GroundAgent(u) 00014 { 00015 // state = DefendState; 00016 } 00017 00018 void FirebatAgent::update() 00019 { 00020 GroundAgent::update(); 00021 } 00022 00023