BWAPI
|
00001 #pragma once 00002 00003 #include "Interface.h" 00004 00005 #include "Singleton.h" 00006 00007 class DrawingHelperClass 00008 { 00009 public: 00010 DrawingHelperClass(){} 00011 00012 void drawProgressBar(Position bottomLeft, int width, int height, double progressFraction, BWAPI::Color innerBar = BWAPI::Colors::Green, BWAPI::Color outerBar = BWAPI::Colors::Black); 00013 }; 00014 00015 typedef Singleton<DrawingHelperClass> DrawingHelper;