code-game-jam-drop-plafond-.../Instrument/Percusson.gd
2025-01-24 13:57:08 +01:00

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)