コード例 #1
0
ファイル: UIManager.cs プロジェクト: carpenterx/Pomodoro-App
 public void SelectPomodoroPlayIndex()
 {
     if (currentProfile.profileData.SelectedPomodoroIndex != -1)
     {
         currentProfile.profileData.PomodoroPlayIndex = currentProfile.profileData.SelectedPomodoroIndex;
         timeKeeper.LoadCurrentPomodoro();
         timeKeeper.ResetCurrentTime();
         UpdatePomodorosPlayIcon();
     }
 }