Package mrtjp.projectred.integration.BundledGateLogic

Examples of mrtjp.projectred.integration.BundledGateLogic.BusTransceiver


                state = GatePart.flipMaskZ(state);

            wires[0].on = (state&2) != 0;
            wires[1].on = (state&8) != 0;

            BusTransceiver logic = (BusTransceiver)gate.getLogic();
            int packed = logic.packClientData();
            panels[0].signal = packed>>>16;
            panels[1].signal = packed&0xFFFF;
        }
View Full Code Here

TOP

Related Classes of mrtjp.projectred.integration.BundledGateLogic.BusTransceiver

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.