|
BWAPI
|
00001 #pragma once 00002 #include "Color.h" 00003 namespace BWTA 00004 { 00005 class VertexData 00006 { 00007 public: 00008 VertexData(); 00009 VertexData(Color c, bool is_region=false, bool is_chokepoint=false); 00010 Color c; 00011 bool is_region; 00012 bool is_chokepoint; 00013 double radius; 00014 }; 00015 }
1.7.6.1