BWAPI
Skynet/Skynet/RegionPath.h
Go to the documentation of this file.
00001 #pragma once
00002 
00003 #include "Interface.h"
00004 
00005 #include "Region.h"
00006 
00007 class RegionPath
00008 {
00009 public:
00010         RegionPath();
00011 
00012         void addNode(Region reg);
00013 
00014         bool isComplete;
00015 
00016         void drawPath();
00017         std::list<Region> path;
00018 };
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines