mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-22 22:55:47 +00:00
FFDec Library is now LGPLv3, others stay GPLv3. Version changed to 3.0.0 for FFDec, 1.0.0 for FFDec Library.
20 lines
258 B
ActionScript
20 lines
258 B
ActionScript
package classes
|
|
{
|
|
|
|
public dynamic class TestClass1
|
|
{
|
|
public var attrib:int = 5;
|
|
public var sons:Array;
|
|
|
|
public function testHello()
|
|
{
|
|
trace("hello2");
|
|
}
|
|
|
|
public function method(i:int):int
|
|
{
|
|
trace("method");
|
|
return 7;
|
|
}
|
|
}
|
|
} |