예제 #1
0
 public TokenCollectionsChangedEventArgs(TokenCollection tokenCollection, Player player, Operation operation)
     : this(tokenCollection, operation)
 {
     this.Player = player;
 }
예제 #2
0
 public TokenCollectionsChangedEventArgs(TokenCollection tokenCollection, Operation operation, Token tokenChanged)
     : this(tokenCollection, null, operation, tokenChanged)
 {
 }
예제 #3
0
 public TokenCollectionsChangedEventArgs(TokenCollection tokenCollection, Operation operation, IEnumerable <Token> tokensChanged)
     : this(tokenCollection, null, operation, tokensChanged)
 {
 }
예제 #4
0
 public TokenCollectionsChangedEventArgs(TokenCollection tokenCollection, Operation operation)
 {
     this.TokenCollection    = tokenCollection;
     this.OperationPerformed = operation;
 }