class Size { public var width:Number=0; public var height:Number=0; public function Size( width:Number, height:Number ) { this.width = width; this.height = height; } }