| 108 | |
| 109 | |
| 110 | class Guitar(Instrument): |
| 111 | |
| 112 | name = "Guitar" |
| 113 | range = (Note("E", 3), Note("E", 7)) |
| 114 | clef = "Treble" |
| 115 | |
| 116 | def __init__(self): |
| 117 | Instrument.__init__(self) |
| 118 | |
| 119 | def can_play_notes(self, notes): |
| 120 | if len(notes) > 6: |
| 121 | return False |
| 122 | return Instrument.can_play_notes(self, notes) |
| 123 | |
| 124 | |
| 125 | class MidiInstrument(Instrument): |