BWAPI
trunk/bwapi/TestAIModule/Source/TestCase.h
Go to the documentation of this file.
00001 #pragma once
00002 #include "BWAssert.h"
00003 class TestCase
00004 {
00005   public:
00006     virtual void start() = 0;
00007     virtual void update() = 0;
00008     virtual void stop() = 0;
00009     bool isRunning() {return running;}
00010     bool isFailed() {return fail;}
00011     bool running;
00012     bool fail;
00013 
00014 };
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines