public void InsertModOption(ModOption option, int index)
 {
     this.RemoveModOptionWithIdentifier(option.identifier);
     this.OptionList.Insert(index, option);
 }
 public void AddModOption(ModOption option)
 {
     RemoveModOptionWithIdentifier(option.identifier);
     this.OptionList.Add(option);
 }