mirror of
https://github.com/PfandBoss/SemesterGameJam2022.git
synced 2025-11-12 04:16:12 +01:00
10 lines
177 B
GDScript
10 lines
177 B
GDScript
extends Module
|
|
|
|
class_name Bin
|
|
|
|
@onready var train = get_parent() as Train
|
|
|
|
#------------Methods-------------#
|
|
func interact():
|
|
train.get_node("CharacterBody3D").inventory = 0
|