public UIButton(string ButtonText, OnClickedEvent ClickCallback, BUI.UIType DifferentButtonType) { buttonText = ButtonText; clickCallback = ClickCallback; customButtonType = DifferentButtonType; hasDifferentButtonType = true; }
public UIBox(string ID, BUI.UIType Type) { id = ID; type = Type; }