1 /* 2 Copyright aswing.org, see the LICENCE.txt. 3 */ 4 5 /** 6 * Brush to draw filled drawing. 7 * @author iiley 8 */ 9 interface org.aswing.graphices.Brush{ 10 11 public function beginFill(target:MovieClip):Void; 12 13 public function endFill(target:MovieClip):Void; 14 } 15