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