mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-26 12:00:45 +00:00
Code formatting
This commit is contained in:
@@ -14,23 +14,23 @@
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
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;
|
||||
}
|
||||
public int frame;
|
||||
public int skipCount;
|
||||
|
||||
@Override
|
||||
public String toString(ConstantPool constants) {
|
||||
return "waitForFrame(" + frame + "," + 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 + ");";
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user