mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-22 18:15:50 +00:00
FFDec Library is now LGPLv3, others stay GPLv3. Version changed to 3.0.0 for FFDec, 1.0.0 for FFDec Library.
21 lines
327 B
ActionScript
21 lines
327 B
ActionScript
package classes
|
|
{
|
|
|
|
public dynamic class TestClass2
|
|
{
|
|
public var attrib1:int;
|
|
public var attrib2:int;
|
|
public var attrib3:int;
|
|
|
|
public function TestClass2(a1:String)
|
|
{
|
|
trace("Class2 construct");
|
|
}
|
|
|
|
public static function createMe(a1:String):TestClass2
|
|
{
|
|
return new TestClass2(a1);
|
|
}
|
|
}
|
|
}
|