Initial version based on previous work. (Version alpha 7)

This commit is contained in:
Jindra Pet��k
2010-09-04 13:57:22 +02:00
commit a34ee7364c
1147 changed files with 84884 additions and 0 deletions
@@ -0,0 +1,19 @@
package com.jpexs.asdec.action.treemodel;
import com.jpexs.asdec.action.Action;
public class WaitForFrameTreeItem extends TreeItem {
public int frame;
public int skipCount;
public WaitForFrameTreeItem(Action instruction, int frame, int skipCount) {
super(instruction, PRECEDENCE_PRIMARY);
this.frame = frame;
this.skipCount = skipCount;
}
@Override
public String toString(ConstantPool constants) {
return "waitForFrame(" + frame + "," + skipCount + ");";
}
}