Ejemplo n.º 1
0
        private static void Check()
        {
            bool   active    = EditorPrefs.GetBool(ReviewReminderWindow.activeKey, true);
            string lastCheck = EditorPrefs.GetString("lastCheck");

            if (active && lastCheck != System.DateTime.Today.ToString())
            {
                ReviewReminderWindow.ShowWindow();
            }
        }
Ejemplo n.º 2
0
 public static void OpenReviewReminder()
 {
     ReviewReminderWindow.ShowWindow();
 }