Example #1
0
 private static void SetUniqueBossUI(IUIManager?ui, bool first, SMHandoff smh, BossConfig b)
 {
     if (first)
     {
         ui?.AddProfile(b.profile);
     }
     else
     {
         ui?.SwitchProfile(b.profile);
     }
     ui?.SetBossColor(b.colors.uiColor, b.colors.uiHPColor);
 }