Beispiel #1
0
        protected virtual void OnSecondExecutionOver()
        {
            BattleEventArgs args = new BattleEventArgs();

            args.thisBattle = this;
            SecondExecutionOver?.Invoke(this, args);
        }
Beispiel #2
0
        protected virtual void OnMakingSelections()
        {
            BattleEventArgs args = new BattleEventArgs();

            args.thisBattle = this;
            MakingSelections?.Invoke(this, args);
        }
Beispiel #3
0
        protected virtual void OnFirstExecutionBegun()
        {
            BattleEventArgs args = new BattleEventArgs();

            args.thisBattle = this;
            FirstExecutionBegun?.Invoke(this, args);
        }
Beispiel #4
0
        protected virtual void OnBattleOver()
        {
            BattleEventArgs args = new BattleEventArgs();

            args.thisBattle = this;
            BattleOver?.Invoke(this, args);
        }