public KeywordEditor(Keyword keywordToEdit)
 {
     m_Keyword = keywordToEdit;
     InitializeComponent();
     m_AbilityEditor.Parent = this;
 }
 public KeywordEditor()
 {
     InitializeComponent();
     m_AbilityEditor.Parent = this;
     m_Keyword = new Keyword();
 }