public ColorAlphaAdapter(IColorAlphaFloatAdaptable target)
     : base(target)
 {
     GetAlpha = () => { return target.Alpha; };
     SetAlpha = (value) => { target.Alpha = value; };
 }
Example #2
0
 public ColorAlphaAdapter(IColorAlphaFloatAdaptable target)
     : base(target)
 {
     GetAlpha = () => { return(target.Alpha); };
     SetAlpha = (value) => { target.Alpha = value; };
 }