code-game-jam-drop-plafond-.../Instrument/Vent.gd

9 lines
157 B
GDScript3
Raw Normal View History

2025-01-24 14:27:04 +01:00
extends Instrument
class_name Vent
func _init(nom : String) -> void:
super(nom)
func souffler() -> void:
print("On souffle dans l'instrument %s." % nom)