| 159 | } |
| 160 | |
| 161 | void Songbook::keepAlive(String const& instrument, Vec2F const& position) { |
| 162 | if (instrument != m_instrument) { |
| 163 | m_instrument = instrument; |
| 164 | m_dataUpdated = true; |
| 165 | } |
| 166 | m_position = position; |
| 167 | if (active()) |
| 168 | m_activeCooldown = 3; |
| 169 | } |
| 170 | |
| 171 | List<Songbook::Note> Songbook::parseABC(String const& abc) { |
| 172 | List<Songbook::Note> result; |
no outgoing calls
no test coverage detected