Exemple #1
0
 public SpellBook(SpellBook copy)
 {
     spells              = new List <Spell>(copy.spells);
     spellsByLevel       = new Dictionary <int, List <Spell> >(copy.spellsByLevel);
     contextMenuTextures = copy.contextMenuTextures;
 }
Exemple #2
0
 public void Initializing()
 {
     inventory = new Inventory(this, new List <Item>());
     spellbook = new SpellBook(this);
 }