Ejemplo n.º 1
0
        public static void ReapplySettings()
        {
            if (sApplySettings != null)
            {
                return;
            }

            sApplySettings = new Common.AlarmTask(1, Sims3.Gameplay.Utilities.TimeUnit.Minutes, OnApplySettings);
        }
Ejemplo n.º 2
0
        public static void RestartAlarm()
        {
            if (sAlarm != null)
            {
                sAlarm.Dispose();
            }

            sAlarm = new AlarmTask(Settings.mAlarmHour, DaysOfTheWeek.All, OnTimer);
        }
Ejemplo n.º 3
0
        protected static void OnApplySettings()
        {
            Settings.Apply(true, true);

            sApplySettings = null;
        }
Ejemplo n.º 4
0
        protected static void OnApplySettings()
        {
            Settings.Apply(true, true);

            sApplySettings = null;
        }
Ejemplo n.º 5
0
        public static void ReapplySettings()
        {
            if (sApplySettings != null) return;

            sApplySettings = new Common.AlarmTask(1, Sims3.Gameplay.Utilities.TimeUnit.Minutes, OnApplySettings);
        }