Package net.minecraft.entity

Examples of net.minecraft.entity.EntityTrackerEntry


  }

  @Override
  @Declare
  public Entity getEntity(int id) {
    EntityTrackerEntry entityTrackerEntry = (EntityTrackerEntry) this.trackedEntityIDs.lookup(id);
    if (entityTrackerEntry == null) {
      return null;
    }
    return entityTrackerEntry.myEntity;
  }
View Full Code Here

TOP

Related Classes of net.minecraft.entity.EntityTrackerEntry

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.