com.bladecoder.engine.actions.AbstractIfAction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of blade-engine Show documentation
Show all versions of blade-engine Show documentation
Classic point and click adventure game engine
package com.bladecoder.engine.actions;
import com.bladecoder.engine.model.VerbRunner;
public abstract class AbstractIfAction extends AbstractControlAction {
protected void gotoElse(VerbRunner v) {
int ip = skipControlIdBlock(v.getActions(), v.getIP());
v.setIP(ip);
}
}