Example #1
0
 public SlotManager(ISlotContentHistory history)
 {
     Bots    = new BotSlots(history);
     All     = new AllSlots(history);
     Filled  = new FilledSlots(history);
     Empty   = new EmptySlots(history);
     Players = new PlayerSlots(history);
 }
Example #2
0
 internal BaseSlots(ISlotContentHistory history)
 {
     _history = history;
 }
Example #3
0
 internal BotSlots(ISlotContentHistory history) : base(history)
 {
 }
Example #4
0
 internal PlayerSlots(ISlotContentHistory history) : base(history)
 {
 }
Example #5
0
 internal EmptySlots(ISlotContentHistory history) : base(history)
 {
 }
Example #6
0
 internal FilledSlots(ISlotContentHistory history) : base(history)
 {
 }