mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-22 09:44:51 +00:00
24 lines
481 B
ActionScript
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;
|
|
}
|
|
|
|
}
|
|
} |