package openfl.display { /** * Indicates the end of a graphics fill. Use a GraphicsEndFill object with the * `Graphics.drawGraphicsData()` method. * * Drawing a GraphicsEndFill object is the equivalent of calling the * `Graphics.endFill()` method. * * @see [Using graphics data classes](https://books.openfl.org/openfl-developers-guide/using-the-drawing-api/advanced-use-of-the-drawing-api/using-graphics-data-classes.html) * * @externs */ public class GraphicsEndFill implements openfl.display.IGraphicsFill, openfl.display.IGraphicsData { /** * Creates an object to use with the `Graphics.drawGraphicsData()` * method to end the fill, explicitly. * */ public function GraphicsEndFill() {} } }