Example #1
0
 public ISupplyBuilder WithSet <T>() where T : DeckSet, new()
 {
     _set = new T();
     return(this);
 }
Example #2
0
 public GameSpec WithSet <T>() where T : DeckSet, new()
 {
     DeckSet = new T();
     return(this);
 }
Example #3
0
 public ISupplyBuilder WithSet(DeckSet deckSet)
 {
     _set = deckSet;
     return(this);
 }