diff options
-rw-r--r-- | nogui.py | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/nogui.py b/nogui.py new file mode 100644 index 0000000..b2989de --- /dev/null +++ b/nogui.py @@ -0,0 +1,41 @@ +running = True +bot_input = True + +def draw_bar(rect, val, thresh=None, min=0, max=1, color=(0,0,0), barcolor=None, exceedcolor=(255,0,0), threshcolor=None): + pass + +def draw_line(p1, p2, color, global_coords=True): + pass + +def draw_box(rect, color, filled=False, global_coords=True): + pass + +def draw_circle(pos, r, color, filled=False, global_coords=True): + pass + +def hilight_cell(cell, color_inner, color_outer, r=20): + pass + +def draw_polygon(polygon, color, filled=False, global_coords=True): + pass + +def draw_path(path, color, global_coords=True): + pass + +def draw_arc(pos, r, bounds, color, global_coords=True): + pass + +def draw_text(pos, text, color, font_size=16, global_coords=True, draw_centered=False): + pass + +def update(): + pass + +def set_client(cl): + pass + +def draw_debug(): + pass + +def draw_frame(): + pass |