about summary refs log tree commit diff homepage
path: root/torus.h
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2018-08-25 00:39:43 -0400
committerJune McEnroe <june@causal.agency>2018-08-25 00:39:43 -0400
commit078357c101d044e8b06e94646663faa248fc4105 (patch)
tree614493d6310d664ebb2d4a37c5ac447bab92071b /torus.h
parentFill in the help page (diff)
downloadtorus-078357c101d044e8b06e94646663faa248fc4105.tar.gz
torus-078357c101d044e8b06e94646663faa248fc4105.zip
Calculate min and max meta for map server-side
Diffstat (limited to 'torus.h')
-rw-r--r--torus.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/torus.h b/torus.h
index 194f227..8194839 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];
 };