diff options
author | Tor Andersson <tor@ccxvii.net> | 2023-06-20 14:36:20 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-07-07 18:39:37 +0200 |
commit | db5183be29b35d777fed31753c8a14bb3c29ba06 (patch) | |
tree | 59cbd8b6c7ffeef2c8c3ab2bcad2a096f725131e /tools/genboxes.py | |
parent | 8a5916ce20fc16e9655463d3d142056401a04031 (diff) | |
download | time-of-crisis-db5183be29b35d777fed31753c8a14bb3c29ba06.tar.gz |
Better layout.
Diffstat (limited to 'tools/genboxes.py')
-rw-r--r-- | tools/genboxes.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/genboxes.py b/tools/genboxes.py index 650f625..eeea2b9 100644 --- a/tools/genboxes.py +++ b/tools/genboxes.py @@ -40,7 +40,7 @@ for line in open("tools/boxes.svg").readlines(): flush() def print_list(): - print("const boxes = {") + print("const BOXES = {") for (x,y,w,h,c,name) in list: print(f'"{name}": [{x},{y},{w},{h}],') print("}") |