示例#1
0
 public ESPDraw(string text, GameObject game_object, EESPItem type, Vector3 screenPoint, Rect box, Color color, int distance)
 {
     this.text        = text;
     this.game_object = game_object;
     this.type        = type;
     this.screenPoint = screenPoint;
     this.box         = box;
     this.color       = color;
     this.distance    = distance;
 }
示例#2
0
 public static void clearDraw(EESPItem espItem)
 {
     draw.RemoveAll(a => a.type == espItem);
 }