summaryrefslogtreecommitdiff
path: root/map_data.c
diff options
context:
space:
mode:
authoresquizo <esquizo+noreply@esquizo.net>2026-06-03 19:34:09 -0300
committeresquizo <esquizo+noreply@esquizo.net>2026-06-03 19:34:09 -0300
commitb8e054b4dbd6ffc561eea0f56d6ded2523bf28f5 (patch)
tree190c96ba6e2617885fa2db9866512e0722713477 /map_data.c
parent94bdded9102bc2e2b2e4bded8f180749efda1b72 (diff)
game: teleporter agora teleporta (olha que legal)
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];