/// <summary>
 /// Loads the latest game save when the user click on the element.
 /// </summary>
 protected override void OnClick()
 {
     SaveGameManager.LoadLatest();
     InternalScenesManager.LoadScene(InternalScenesManager.Office);
 }
 /// <summary>
 /// Load the latest save game (if any), and reload the scene (the Office).
 /// </summary>
 private static void LoadSaveGameAndReload()
 {
     SaveGameManager.LoadLatest();
     InternalScenesManager.LoadScene(InternalScenesManager.Office);
 }