diff options
author | June McEnroe <june@causal.agency> | 2018-08-25 00:39:43 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2018-08-25 00:39:43 -0400 |
commit | a015f73a754ae6cbfb267a050770c94374fc908c (patch) | |
tree | 271ea45775cf37a2d552361e016523429dc0f877 /torus.h | |
parent | Fill in the help page (diff) | |
download | torus-a015f73a754ae6cbfb267a050770c94374fc908c.tar.gz torus-a015f73a754ae6cbfb267a050770c94374fc908c.zip |
Calculate min and max meta for map server-side
Diffstat (limited to '')
-rw-r--r-- | torus.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/torus.h b/torus.h index 818f009..a83cac0 100644 --- a/torus.h +++ b/torus.h @@ -104,6 +104,8 @@ enum { }; struct Map { + struct Meta min; + struct Meta max; struct Meta meta[MAP_ROWS][MAP_COLS]; }; |