8 lines
142 B
GDScript
8 lines
142 B
GDScript
extends Percussion
|
|
|
|
func _init() -> void:
|
|
super("Tambour")
|
|
|
|
func faire_roulement() -> void:
|
|
print("Le tambour fait un roulement.")
|
|
jouer()
|