예제 #1
0
        public static void Notify(Enumerations.Events.Notify enumCase)
        {
            switch (Manage.CurrentAnnouncer)
            {
            case Enumerations.SoundPacks.Portal2:
                Portal2.Notify(enumCase);
                break;

            case Enumerations.SoundPacks.StanlyParable:
                StanleyParable.Notify(enumCase);
                break;
            }
        }
예제 #2
0
        public static void Notify(Enumerations.Events.Notify enumCase)
        {
            switch (enumCase)
            {
            case Enumerations.Events.Notify.Defeat:
                AbstractionLayer._Notify.Defeat();
                break;

            case Enumerations.Events.Notify.Win:
                AbstractionLayer._Notify.Win();
                break;

            case Enumerations.Events.Notify.MinionSpawn:
                AbstractionLayer._Notify.MinionSpawn();
                break;

            case Enumerations.Events.Notify.Welcome:
                AbstractionLayer._Notify.Welcome();
                break;
            }
        }