code-game-jam-drop-plafond-.../Instrument/Vent.gd
2025-01-24 13:57:08 +01:00

8 lines
157 B
GDScript

extends Instrument
class_name Vent
func _init(nom : String) -> void:
super(nom)
func souffler() -> void:
print("On souffle dans l'instrument %s." % nom)