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