public static GUIStyle Border(this GUIStyle current, int left, int right, int top, int bottom, bool asCopy = true) { return(current.Border(new RectOffset(left, right, top, bottom), asCopy)); }
public static GUIStyle Border(this GUIStyle current, int value, bool asCopy = true) { return(current.Border(value, value, value, value, asCopy)); }