Package com.sk89q.craftbook.mech.ic

Examples of com.sk89q.craftbook.mech.ic.LogicChipState


public abstract class LogicPlcLang implements PlcLang {

    public final boolean[] tick(ChipState state, String program) throws PlcException {

        LogicChipState s = new LogicChipState(state.getInputs(), state.getOutputs(), state.getText(),
                state.getBlockPosition());
        return tick(state.getWorld().getUniqueIdString(), s, program);
    }
View Full Code Here

TOP

Related Classes of com.sk89q.craftbook.mech.ic.LogicChipState

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.