예제 #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);
 }