예제 #1
0
 public ColorGradient(Color4 a, Color4 b)
 {
     A = a; B = b;
 }
예제 #2
0
 public LayoutDebugPresenter(Color4 color, float thickness = 0)
 {
     Color     = color;
     Thickness = thickness;
 }
예제 #3
0
 public ColorGradient(Color4 a)
 {
     A = B = a;
 }
예제 #4
0
 public ThemedFramePresenter(Color4 innerColor, Color4 borderColor)
 {
     this.innerColor  = innerColor;
     this.borderColor = borderColor;
 }