diff options
author | Florian Jung <flo@windfisch.org> | 2015-09-01 20:47:11 +0200 |
---|---|---|
committer | Florian Jung <flo@windfisch.org> | 2015-09-01 20:48:03 +0200 |
commit | 7a836f4a0a68188a1486b669c4cd437b5f592a5d (patch) | |
tree | 666d7867967e8d6fdc04aca6b18d8a95a077f33c /nogui.py | |
parent | f99e10cff97afdc3e6ef07db22cf5f7fd442e067 (diff) | |
parent | 7c1180a7b58e7b8c17c8dab297058d0c001386c6 (diff) |
Merge branch 'master' into pathfinding
Diffstat (limited to 'nogui.py')
-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 |