Making the numbers match topic numbers

This commit is contained in:
Danny Staple
2022-12-28 18:44:53 +00:00
parent 6e8606fbeb
commit 6ebb615044
81 changed files with 0 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
"""Represent the lines of the arena"""
boundary_lines = [
[(0,0), (0, 1500)],
[(0, 1500), (1500, 1500)],
[(1500, 1500), (1500, 500)],
[(1500, 500), (1000, 500)],
[(1000, 500), (1000, 0)],
[(1000, 0), (0, 0)],
]