ajout intrument
This commit is contained in:
parent
84f3b91978
commit
5ee577d733
11 changed files with 328 additions and 1 deletions
9
Instrument/Instrument.gd
Normal file
9
Instrument/Instrument.gd
Normal file
|
@ -0,0 +1,9 @@
|
|||
class_name Instrument
|
||||
|
||||
var nom : String
|
||||
|
||||
func _init(nom : String) -> void:
|
||||
self.nom = nom
|
||||
|
||||
func jouer() -> void:
|
||||
print("L'instrument %s est joué." % nom)
|
Loading…
Add table
Add a link
Reference in a new issue