9 lines
157 B
GDScript
9 lines
157 B
GDScript
extends Instrument
|
|
class_name Percussion
|
|
|
|
|
|
func _init(nom : String) -> void:
|
|
super(nom)
|
|
|
|
func frapper() -> void:
|
|
print("On frappe l'instrument %s." % nom)
|