diff options
| author | nokoe <nokoe@mailbox.org> | 2024-06-22 01:47:28 +0200 |
|---|---|---|
| committer | metamuffin <metamuffin@disroot.org> | 2024-06-23 19:28:31 +0200 |
| commit | 8442047d929d896b5c3992d766adf386d71358a3 (patch) | |
| tree | 12f8eb2587b32daabea9286881f020ae5147f757 /client/scripts/tiles/raw_steak_crate.gd | |
| parent | 66ab776143b0108167a7714b4a1b3e98c54722e2 (diff) | |
| download | hurrycurry-8442047d929d896b5c3992d766adf386d71358a3.tar hurrycurry-8442047d929d896b5c3992d766adf386d71358a3.tar.bz2 hurrycurry-8442047d929d896b5c3992d766adf386d71358a3.tar.zst | |
add more tiles
Diffstat (limited to 'client/scripts/tiles/raw_steak_crate.gd')
| -rw-r--r-- | client/scripts/tiles/raw_steak_crate.gd | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/client/scripts/tiles/raw_steak_crate.gd b/client/scripts/tiles/raw_steak_crate.gd new file mode 100644 index 00000000..3a15b942 --- /dev/null +++ b/client/scripts/tiles/raw_steak_crate.gd @@ -0,0 +1,6 @@ +class_name RawSteakCrate +extends Crate + +func _init(rename: String, neighbors: Array): + super(rename, neighbors) + base.add_child(load("res://models/prefabs/map/crate_steak.tscn").instantiate()) |