Package mods.railcraft.common.util.network.PacketEffect

Examples of mods.railcraft.common.util.network.PacketEffect.Effect


        byte effectId = data.readByte();
        if (effectId < 0)
            return;

        Effect effect = Effect.values()[effectId];
        switch (effect) {
            case TELEPORT:
                doTeleport(data);
                break;
            case FIRESPARK:
View Full Code Here

TOP

Related Classes of mods.railcraft.common.util.network.PacketEffect.Effect

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.