public static void SetValue(this IExposedToLevelEditor exposed, int id, object value, bool notify, ILevelEditorUndo undo)
 {
     exposed.BeginEdit(id);
     exposed.ModifyValue(value, notify);
     exposed.EndEdit(notify, undo);
 }
 protected void ModifyPropertyValue(object value, bool notify)
 {
     boundComponent.ModifyValue(value, notify);
 }