BWAPI
|
00001 #pragma once 00002 #include <BWAPI.h> 00003 00004 template <class Layer2Cueing> 00005 class Layer3TacticalRecognition : public Component 00006 { 00007 public: 00008 Layer3TacticalRecognition(Layer2Cueing& layer2Cueing) 00009 : m_layer2Cueing(layer2Cueing) 00010 { 00011 } 00012 00013 void onStart() {} 00014 void onFrame() {} 00015 void onEnd() {} 00016 void onSendText(std::string text) {} 00017 00018 protected: 00019 Layer2Cueing& m_layer2Cueing; 00020 };