Package com.mojang.ld22.entity

Examples of com.mojang.ld22.entity.Entity.tick()


    for (int i = 0; i < entities.size(); i++) {
      Entity e = entities.get(i);
      int xto = e.x >> 4;
      int yto = e.y >> 4;

      e.tick();

      if (e.removed) {
        entities.remove(i--);
        removeEntity(xto, yto, e);
      } else {
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.