Files
jpexs-decompiler/libsrc/ffdec_lib/testdata/amf3/ObjectWithCustom.as
2016-07-17 15:48:56 +02:00

24 lines
481 B
ActionScript

package
{
public class ObjectWithCustom
{
public var a:String;
public var b:String;
public var c:CustomClass;
public var d:String;
public var e:String;
public var f:String;
public function ObjectWithCustom(a:String,b:String,c:CustomClass,d:String,e:String,f:String) {
this.a = a;
this.b = b;
this.c = c;
this.d = d;
this.e = e;
this.f = f;
}
}
}