mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-24 17:14:32 +00:00
18 lines
326 B
ActionScript
18 lines
326 B
ActionScript
class com.jpexs.TestVarsMethods {
|
|
|
|
public var instVar:Number = 1;
|
|
public static var statVar:Number = 2;
|
|
|
|
|
|
public function TestVarsMethods(){
|
|
trace("constructor");
|
|
}
|
|
|
|
public function instMethod() {
|
|
trace("instance method");
|
|
}
|
|
|
|
public static function statMethod() {
|
|
trace("static method");
|
|
}
|
|
} |