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