Exemplo n.º 1
0
 public static void DrawText(DrawPlaces drawWhere, int x, int y, string text, DrawTextColors color) {
    SWIG.BWAPI.bwapi.Broodwar.drawText((int)drawWhere, x, y, GetTextInColor(text, color));
 }
Exemplo n.º 2
0
 static string GetTextInColor(string text, DrawTextColors textColor) {
     return Char.ConvertFromUtf32((int)textColor) + " " + text;
 }