예제 #1
0
파일: Commute.cs 프로젝트: jbakic/Shielded
 public Commute(Action perform, ICommutableShielded[] affecting)
 {
     State = CommuteState.Ok;
     Perform = perform;
     Affecting = affecting;
 }
예제 #2
0
 public Commute(Action perform, IShielded[] affecting)
 {
     State     = CommuteState.Ok;
     Perform   = perform;
     Affecting = affecting;
 }