Пример #1
0
    private void UpdateInfoWord()
    {
        WordLeo word = coreWorkout.GetCurrentWord();

        LevelText.text = word.progress.license.ToString();

        TimeSpan time = word.GetLicenseValidityTime();

        TimeReduceText.text = Utilities.FormatTime(time);

        TimeSpan timeUnlock = word.GetLicenseUnlockForRepeat();

        TimeRepeatText.text = Utilities.FormatTime(timeUnlock);
    }
Пример #2
0
 WordLeo IWorkout.GetCurrentWord()
 {
     return(core.GetCurrentWord());
 }