8 lines
157 B
GDScript
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)
|