Esempio n. 1
0
        public StaminaEffect(int amount, EffectKind kind, EventTimerTiming timing)
        {
            Amount = amount;

            Kind = kind;

            Timing = timing;
        }
Esempio n. 2
0
 protected ActiveEffect(EventTimerTiming timing, bool loop)
 {
     Timer = new EventTimer(timing, looping: loop);
 }