public void LoadData()
 {
     SaveItemsData.LoadItems();
 }
 // Put it in a button for now, next time we can make this entier class a singleton class and then call this save function everytime we change something in the game
 public void SaveData()
 {
     SaveItemsData.SaveItems();
 }