public static List <Item> Load(string path)
 {
     return(CsvFile <Item> .Load(path, Instantiate, false));
 }
 public static List <Vehicle> Load(string path)
 {
     return(CsvFile <Vehicle> .Load(path, Instantiate, false));
 }