Exemplo n.º 1
0
 public CharacterSheet(string name, ICharStats stats, EquipmentSheet equip, EquippedDeck deck)
 {
     Name      = name;
     Stats     = stats;
     Equipment = equip;
     Deck      = deck;
 }
Exemplo n.º 2
0
 public CharacterBuilder WithEquipment(EquipmentSheet equip)
 {
     _equip.Put(equip);
     return(this);
 }