aboutsummaryrefslogtreecommitdiff
path: root/client/scripts/map/oven.gd
diff options
context:
space:
mode:
authornokoe <nokoe@mailbox.org>2024-06-20 15:21:57 +0200
committermetamuffin <metamuffin@disroot.org>2024-06-23 19:24:32 +0200
commit7fc559d2967dd235f72ad0fd04d5e13c31486e98 (patch)
tree5833536b051956ce049681ec04eab0d2ec8fe17a /client/scripts/map/oven.gd
parent43528e61419b639049799b5e5de19c727d508dbc (diff)
downloadhurrycurry-7fc559d2967dd235f72ad0fd04d5e13c31486e98.tar
hurrycurry-7fc559d2967dd235f72ad0fd04d5e13c31486e98.tar.bz2
hurrycurry-7fc559d2967dd235f72ad0fd04d5e13c31486e98.tar.zst
add some more counter elements
Diffstat (limited to 'client/scripts/map/oven.gd')
-rw-r--r--client/scripts/map/oven.gd6
1 files changed, 6 insertions, 0 deletions
diff --git a/client/scripts/map/oven.gd b/client/scripts/map/oven.gd
new file mode 100644
index 00000000..2ebe7f33
--- /dev/null
+++ b/client/scripts/map/oven.gd
@@ -0,0 +1,6 @@
+class_name Oven
+extends Counter
+
+func setup(rename: String, neighbors: Array):
+ super.setup(rename, neighbors)
+ base.add_child(load("res://models/prefabs/map/oven.tscn").instantiate())