public void IncreaseBPM() { _beatModel.SetBPM(_beatModel.GetBPM() + 1); }
public void IncreaseBPM() { int bpm = model.GetBPM(); model.SetBPM(bpm + 1); }