// Token: 0x06003879 RID: 14457 RVA: 0x00198D74 File Offset: 0x00197174
 public static void open()
 {
     if (PlayerDashboardUI.active)
     {
         return;
     }
     PlayerDashboardUI.active = true;
     if (PlayerDashboardInventoryUI.active)
     {
         PlayerDashboardInventoryUI.active = false;
         PlayerDashboardInventoryUI.open();
     }
     else if (PlayerDashboardCraftingUI.active)
     {
         PlayerDashboardCraftingUI.active = false;
         PlayerDashboardCraftingUI.open();
     }
     else if (PlayerDashboardSkillsUI.active)
     {
         PlayerDashboardSkillsUI.active = false;
         PlayerDashboardSkillsUI.open();
     }
     else if (PlayerDashboardInformationUI.active)
     {
         PlayerDashboardInformationUI.active = false;
         PlayerDashboardInformationUI.open();
     }
     PlayerDashboardUI.container.lerpPositionScale(0f, 0f, ESleekLerp.EXPONENTIAL, 20f);
 }
 // Token: 0x0600387B RID: 14459 RVA: 0x00198EAB File Offset: 0x001972AB
 private static void onClickedInventoryButton(SleekButton button)
 {
     PlayerDashboardCraftingUI.close();
     PlayerDashboardSkillsUI.close();
     PlayerDashboardInformationUI.close();
     if (PlayerDashboardInventoryUI.active)
     {
         PlayerDashboardUI.close();
         PlayerLifeUI.open();
     }
     else
     {
         PlayerDashboardInventoryUI.open();
     }
 }