コード例 #1
0
ファイル: ITappable.cs プロジェクト: Veggie13/Magic
 protected virtual bool onTryToTap(Turn turn)
 {
     return(true);
 }
コード例 #2
0
ファイル: Land.cs プロジェクト: Veggie13/Magic
 protected override bool onTryToTap(Turn turn)
 {
     turn.CurrentStep.Actions.Push(new ManaAction(_color));
     return(true);
 }