Пример #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));
 }
Пример #2
0
 static string GetTextInColor(string text, DrawTextColors textColor) {
     return Char.ConvertFromUtf32((int)textColor) + " " + text;
 }