Package logisticspipes.interfaces.ISpawnParticles

Examples of logisticspipes.interfaces.ISpawnParticles.ParticleCount


    int nparticles = data.readInt();
    particles = new ArrayList<ParticleCount>(nparticles);
    for(int i = 0; i < nparticles; i++) {
      int particle = data.readByte();
      int amount = data.readInt();
      particles.add(new ParticleCount(Particles.values()[particle], amount));
    }
  }
View Full Code Here

TOP

Related Classes of logisticspipes.interfaces.ISpawnParticles.ParticleCount

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.