package { public class actionscript_misc_Point extends Serializer { public var x:Number; public var y:Number; public function actionscript_misc_Point (x:Number, y:Number) { super(); setRecordSeparator(","); setSerializationVars(["x", "y"]); this.x = x; this.y = y; } } }