Esempio n. 1
0
 public GuiButtonStyle(IGuiDrawable normal)
     : this(normal, normal, normal)
 {
 }
Esempio n. 2
0
 public GuiButtonStyle(IGuiDrawable normal, IGuiDrawable pressed, IGuiDrawable hovered)
 {
     Normal = normal;
     Pressed = pressed;
     Hovered = hovered;
 }
 public GuiCheckBoxStyle(IGuiDrawable checkedOn, IGuiDrawable checkedOff)
    : this(checkedOn, checkedOff, checkedOn)
 {
 }
Esempio n. 4
0
 public GuiButtonStyle(IGuiDrawable normal, IGuiDrawable pressed)
     : this(normal, pressed, normal)
 {
 }
 public GuiCheckBoxStyle(IGuiDrawable checkedOn, IGuiDrawable checkedOff, IGuiDrawable hovered)
 {
     CheckedOn = checkedOn;
     CheckedOff = checkedOff;
 }