/// <summary> /// Initialize the Controller /// </summary> /// <param name="gui">Interface reference for the Character Details GUI</param> public Character_Form_Controller(Character_Form_Interface gui) { this.gui = gui; if (character_sheet == null) { character_sheet = new CharacterSheet(); } }
/// <summary> /// Initialize a new Mistborn Character Details Conroller /// </summary> /// <param name="gui">Interface reference for the Character Details GUI</param> public Mistborn_Controller(Character_Form_Interface gui) : base(gui) { mistborn_character_sheet = new Mistborn_CharacterSheet(); character_sheet = mistborn_character_sheet; // character_sheet is a lower level reference to our Mistborn character sheet }