package laya.webgl.shapes
{
	public class RoundPolygon extends BasePoly
	{
		public function RoundPolygon(x:Number, y:Number, width:Number, height:Number, edges:Number, color:uint, borderWidth:int, borderColor:uint,round:uint)
		{
			super(x, y, width, height, edges, color, borderWidth, borderColor,round);
		}
	}
}