// This adds to a WeakList, meaning that the list will still be discarded if all other references are lost
 public LoadedList(string name)
 {
     ListName = name;
     AllLists.Add(this);
 }