Пример #1
0
 public static void DrawLine(DrawPlaces drawWhere, int x1, int y1, int x2, int y2, DrawColor color) {
    SWIG.BWAPI.bwapi.Broodwar.drawLine((int)drawWhere, x1, y1, x2, y2, color.BwapiColor);
 }
Пример #2
0
 public static void DrawTriangle(DrawPlaces drawWhere, int x1, int y1, int x2, int y2, int x3, int y3, DrawColor color, bool isSolid) {
    SWIG.BWAPI.bwapi.Broodwar.drawTriangle((int)drawWhere, x1, y1, x2, y2, x3, y3, color.BwapiColor, isSolid);
 }
Пример #3
0
 public static void DrawDot(DrawPlaces drawWhere, int x, int y, DrawColor color) {
    SWIG.BWAPI.bwapi.Broodwar.drawDot((int)drawWhere, x, y, color.BwapiColor);
 }
Пример #4
0
 public static void DrawEllipse(DrawPlaces drawWhere, int x, int y, int radiusX, int radiusY, DrawColor color, bool isSolid) {
    SWIG.BWAPI.bwapi.Broodwar.drawEllipse((int)drawWhere, x, y, radiusX, radiusY, color.BwapiColor, isSolid);
 }
Пример #5
0
 public static void DrawBox(DrawPlaces drawWhere, int x, int y, int width, int height, DrawColor color, bool isSolid) {
    SWIG.BWAPI.bwapi.Broodwar.drawBox((int)drawWhere, x, y, width, height, color.BwapiColor, isSolid);
 }
Пример #6
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));
 }
Пример #7
0
 public static void DrawText(DrawPlaces drawWhere, int x, int y, string text) {
    SWIG.BWAPI.bwapi.Broodwar.drawText((int)drawWhere, x, y, text);
 }