summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Jung <flo@windfisch.org>2015-09-01 00:02:52 +0200
committerFlorian Jung <flo@windfisch.org>2015-09-01 00:02:52 +0200
commit6e3feebe36a8ff9aecc13e238c3b59ddc03c4709 (patch)
tree39133c329bcdbe4824db29763bae727cd0357e89
parentaee2f231e702c5b7fa025a297c107e086838b204 (diff)
forgot nogui.py m(
-rw-r--r--nogui.py41
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