예제 #1
0
 private static void DrawText(string text, int size, float x, float y, ARGB color)
 {
     LeagueSharp.Drawing.DrawText(x, y, color.ToSystemColor(), text);
 }
예제 #2
0
 private static void DrawCircle(float x, float y, float z, float size, ARGB color)
 {
     LeagueSharp.Drawing.DrawCircle(new Vector3(x, y, z), size, color.ToSystemColor());
 }
예제 #3
0
 private static void DrawLine(float x1, float x2, float y1, float y2, float size, ARGB color)
 {
     LeagueSharp.Drawing.DrawLine(x1, y1, x1, x2, size, color.ToSystemColor());
 }
예제 #4
0
 private static void DrawText(string text, int size, float x, float y, ARGB color)
 {
     LeagueSharp.Drawing.DrawText(x, y, color.ToSystemColor(), text);
 }
예제 #5
0
 private static void DrawLine(float x1, float x2, float y1, float y2, float size, ARGB color)
 {
     LeagueSharp.Drawing.DrawLine(x1, y1, x1, x2, size, color.ToSystemColor());
 }
예제 #6
0
 private static void DrawCircle(float x, float y, float z, float size, ARGB color)
 {
     LeagueSharp.Drawing.DrawCircle(new Vector3(x, y, z), size, color.ToSystemColor());
 }
예제 #7
0
 private static void DrawRectangle(float x, float y, float width, float height, ARGB color)
 {
     new Render.Rectangle((int)x, (int)y, (int)width, (int)height, new ColorBGRA(color.ToSystemColor().ToArgb())).Add();
 }
예제 #8
0
 private static void DrawPoint(float x, float y, float thickness, ARGB color)
 {
     LeagueSharp.Drawing.DrawLine(new Vector2(x, y), new Vector2(x, y), thickness, color.ToSystemColor());
 }