BWAPI
SPAR/AIModule/SparAIModule/SparObserver.h
Go to the documentation of this file.
00001 #pragma once
00002 #include "Utils/Component.h"
00003 
00004 class SparObserver : public Component
00005 {
00006 public:
00007   virtual ~SparObserver() {}
00008 
00009   virtual void onStart() = 0;
00010 
00011   virtual void onFrame() = 0;
00012 
00013   virtual void close() = 0;
00014 };
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines