Пример #1
0
 public Trigger(MagicEventType _type,
                AttributGroup <Target> _targets = null,
                Ability _exec = null)
 {
     Type        = _type;
     ValidTarget = _targets;
     Exec        = _exec;
 }
Пример #2
0
 public MagicEventArg(MagicEventType t, Player _player)
 {
     Type   = t;
     Player = _player;
 }
Пример #3
0
 public MagicEventArg(MagicEventType t, CardInstance _card = null)
 {
     Type   = t;
     Source = _card;
 }