public static void TrackPrisonProgress(Prison PrisonInProgress)
 {
     string Label = "P" + PrisonInProgress.GetPrisonNumber();
     int Progress = PrisonInProgress.IsCompleted() ? 1 : 0;
     PlayerPrefs.GetInt(Label);
     PlayerPrefs.SetInt(Label, Progress);
 }