Exemplo n.º 1
0
 public override void OnNotify(object value, Relic.NotificationType notificationType)
 {
     for (int i = 0; i < relics.Count; i++)
     {
         if (relics[i].condition == notificationType)
         {
             relics[i].Process(value);
             StartCoroutine(RelicDisplayController.relicDisplay.ShowRelicTrigger(i));
         }
     }
     HandController.handController.ResetCardDisplays();
 }
Exemplo n.º 2
0
 public override void OnNotify(object value, Relic.NotificationType notificationType)
 {
     throw new System.NotImplementedException();
 }
Exemplo n.º 3
0
 public abstract void OnNotify(object value, Relic.NotificationType notificationType);