ajout intrument

This commit is contained in:
Elouan 2025-01-24 14:27:04 +01:00
parent 84f3b91978
commit 5ee577d733
11 changed files with 328 additions and 1 deletions

8
Instrument/Vent.gd Normal file
View file

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