GraphicsSolidFill.hx 216 B

1234567
  1. package flash.display;
  2. @:final extern class GraphicsSolidFill implements IGraphicsData, implements IGraphicsFill {
  3. var alpha : Float;
  4. var color : UInt;
  5. function new(color : UInt = 0, alpha : Float = 1) : Void;
  6. }