public GuiButtonStyle(IGuiDrawable normal) : this(normal, normal, normal) { }
public GuiButtonStyle(IGuiDrawable normal, IGuiDrawable pressed, IGuiDrawable hovered) { Normal = normal; Pressed = pressed; Hovered = hovered; }
public GuiCheckBoxStyle(IGuiDrawable checkedOn, IGuiDrawable checkedOff) : this(checkedOn, checkedOff, checkedOn) { }
public GuiButtonStyle(IGuiDrawable normal, IGuiDrawable pressed) : this(normal, pressed, normal) { }
public GuiCheckBoxStyle(IGuiDrawable checkedOn, IGuiDrawable checkedOff, IGuiDrawable hovered) { CheckedOn = checkedOn; CheckedOff = checkedOff; }