mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-25 06:40:47 +00:00
Initial version based on previous work. (Version alpha 7)
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
package com.jpexs.asdec.action.treemodel;
|
||||
|
||||
import com.jpexs.asdec.action.Action;
|
||||
|
||||
public class GotoFrameTreeItem extends TreeItem {
|
||||
public int frame;
|
||||
|
||||
public GotoFrameTreeItem(Action instruction, int frame) {
|
||||
super(instruction, PRECEDENCE_PRIMARY);
|
||||
this.frame = frame;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString(ConstantPool constants) {
|
||||
return "gotoAndStop(" + frame + ");";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user