/// <summary>
 /// Only if ReorderableType == WithOneLineProperties
 /// </summary>
 public ReorderableDrawer(ReorderableType reorderableType, string[] elementProperties)
 {
     this.reorderableType   = reorderableType;
     this.elementProperties = elementProperties;
 }
 public ReorderableDrawer(ReorderableType reorderableType, bool showDefaultButtons)
 {
     this.reorderableType    = reorderableType;
     this.showDefaultButtons = showDefaultButtons;
 }