mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-22 16:26:27 +00:00
18 lines
211 B
ActionScript
18 lines
211 B
ActionScript
package pkg {
|
|
|
|
public class MyClass extends ParentClass {
|
|
|
|
private var val:int;
|
|
|
|
public function MyClass(val) {
|
|
this.val = val;
|
|
}
|
|
|
|
public function getVal():int{
|
|
return this.val;
|
|
}
|
|
|
|
}
|
|
|
|
}
|