Package pneumaticCraft.common.network

Examples of pneumaticCraft.common.network.PacketAphorismTileUpdate


        this.tile = tile;
        textLines = tile.getTextLines();
        if(textLines.size() == 1 && textLines.get(0).equals("")) {
            textLines.set(0, getSplashText());
        }
        NetworkHandler.sendToServer(new PacketAphorismTileUpdate(tile));
    }
View Full Code Here


    }

    @Override
    protected void keyTyped(char par1, int par2){
        if(par2 == 1) {
            NetworkHandler.sendToServer(new PacketAphorismTileUpdate(tile));
        } else if(par2 == 200) {
            cursorY--;
            if(cursorY < 0) cursorY = textLines.size() - 1;
        } else if(par2 == 208 || par2 == 156) {
            cursorY++;
View Full Code Here

TOP

Related Classes of pneumaticCraft.common.network.PacketAphorismTileUpdate

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.