summaryrefslogtreecommitdiff
path: root/map_data.c
diff options
context:
space:
mode:
authoresquizo <esquizo+noreply@esquizo.net>2026-06-03 20:14:23 -0300
committeresquizo <esquizo+noreply@esquizo.net>2026-06-03 20:14:23 -0300
commitb432ece87df0260290f0f8f408bdcaf922d05c22 (patch)
tree190c96ba6e2617885fa2db9866512e0722713477 /map_data.c
parent022b9bd5f910629ecbf837b38b3cd761c2f703ea (diff)
parentb8e054b4dbd6ffc561eea0f56d6ded2523bf28f5 (diff)
Merge branch 'game/teleporters'
Diffstat (limited to 'map_data.c')
-rw-r--r--map_data.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/map_data.c b/map_data.c
new file mode 100644
index 0000000..e673de8
--- /dev/null
+++ b/map_data.c
@@ -0,0 +1,8 @@
+struct {
+ int ftx, fty;
+ int ttx, tty;
+} telemap[] = {
+ { 10, 5, 131, 3 },
+ { 138, 6, 3, 4 },
+};
+int telemapsize = sizeof telemap / sizeof telemap[0];