Exemple #1
0
 public void OpenSpellbookPanel(Item_Spellbook book)
 {
     _spellbookScreenActive = true;
     _spellbookInterface    = new SpellbookInterface(this);
     _spellbookPanel        = new SpellbookPanel(this, _spellbookInterface);
     _spellbookInterface.ReadSpellbook(book);
 }
Exemple #2
0
 public void CloseSpellbookPanel()
 {
     _spellbookScreenActive = false;
     _spellbookInterface    = null;
     _spellbookPanel        = null;
 }
Exemple #3
0
 public void OpenSpellbookPanel()
 {
     _spellbookScreenActive = true;
     _spellbookInterface    = new SpellbookInterface(this);
     _spellbookPanel        = new SpellbookPanel(this, _spellbookInterface);
 }