aboutsummaryrefslogtreecommitdiff
path: root/client/scripts/map/table.gd
diff options
context:
space:
mode:
authornokoe <nokoe@mailbox.org>2024-06-20 14:13:28 +0200
committermetamuffin <metamuffin@disroot.org>2024-06-23 19:24:14 +0200
commit80039e0e7eb142d51f882a39981fd415ea3f5c54 (patch)
tree62d75807ff55374bdb5431dd5db82399d241c4c7 /client/scripts/map/table.gd
parent5bf50cd276a568f55fb1d5aedef96e614bed015b (diff)
downloadhurrycurry-80039e0e7eb142d51f882a39981fd415ea3f5c54.tar
hurrycurry-80039e0e7eb142d51f882a39981fd415ea3f5c54.tar.bz2
hurrycurry-80039e0e7eb142d51f882a39981fd415ea3f5c54.tar.zst
map generation
Diffstat (limited to 'client/scripts/map/table.gd')
-rw-r--r--client/scripts/map/table.gd6
1 files changed, 6 insertions, 0 deletions
diff --git a/client/scripts/map/table.gd b/client/scripts/map/table.gd
new file mode 100644
index 00000000..937ef097
--- /dev/null
+++ b/client/scripts/map/table.gd
@@ -0,0 +1,6 @@
+class_name Table
+extends FullTile
+
+func setup(rename: String, neighbors: Array):
+ super.setup(rename, neighbors)
+ base.add_child(load("res://models/prefabs/map/table_round_A_small.tscn").instantiate())