mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-14 19:41:53 +00:00
15 lines
271 B
Haxe
15 lines
271 B
Haxe
package tests_classes;
|
|
|
|
class TestStaticVars {
|
|
public var a:Int;
|
|
public var b:Int;
|
|
|
|
public static var sa:Int = 1001;
|
|
public static var sb:Int = 1002;
|
|
|
|
public function new(a:Int, b:Int) {
|
|
this.a = a;
|
|
this.b = b;
|
|
}
|
|
}
|