コード例 #1
0
ファイル: CardZone.cs プロジェクト: Mouledoux/Hexagrid
 protected void AddCard(CardObject newCard)
 {
     cards.Add(newCard);
     onCardAdd?.Invoke();
 }
コード例 #2
0
 public void ProcessCardAction(CardAction cardAction, CardObject targetCard)
 {
     cardAction.targetCard = targetCard;
     cardAction.ProcessActionOnTargets();
 }