BWAPI
SPAR/AIModule/SparAIModule/SituationAnalysis/Layer4StrategicRecognition/Layer4StrategicRecognition.h
Go to the documentation of this file.
00001 #pragma once
00002 #include <BWAPI.h>
00003 
00004 template <class Layer3TacticalRecognition>
00005 class Layer4StrategicRecognition : public Component
00006 {
00007 public:
00008   Layer4StrategicRecognition(Layer3TacticalRecognition& layer3TacticalRecognition)
00009     : m_layer3TacticalRecognition(layer3TacticalRecognition)
00010   {
00011   }
00012 
00013   void onStart() {}
00014   void onFrame() {}
00015   void onEnd() {}
00016   void onSendText(std::string text) {}
00017 
00018 protected:
00019   Layer3TacticalRecognition& m_layer3TacticalRecognition;
00020 };
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines