Пример #1
0
    void Start()
    {
        int[] bossUnlocksNeedingNotification = PersistentData.BossUnlocksNeedingNotification();

        if (bossUnlocksNeedingNotification.Length > 0)
        {
            int bossId = bossUnlocksNeedingNotification[0];
            this.ShowForBoss(StaticData.BossData.BossTypes[bossId]);
            PersistentData.BossUnlockNotified(bossId);
        }
    }