Examples of platformWH()


Examples of m33.entities.Chunk.platformWH()

              int ey = Integer.parseInt(command[4]);
              tempChunk.setPlatform(sx, ex, sy, ey);
            } else if (command[0].equals("numWH")){
              int numW = Integer.parseInt(command[1]);
              int numH = Integer.parseInt(command[2]);
              tempChunk.platformWH(numW, numH);
            } else if (command[0].equals("spawn")){
              int spawnX = Integer.parseInt(command[1]);
              int spawnY = Integer.parseInt(command[2]);
              tempChunk.setSpawn(spawnX, spawnY);
            }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.