Package igwmod.gui

Examples of igwmod.gui.LocatedEntity


            }
        }
    }

    private void handleVillagers(int x, int y, List<IWidget> locatedTextures){
        locatedTextures.add(new LocatedEntity(EntityVillager.class, x + 70, y + 95, 2F));

        LocatedEntity locatedEntity = new LocatedEntity(EntityVillager.class, x + 215, y + 125, 2F);
        EntityVillager villager = (EntityVillager)locatedEntity.entity;
        villager.setProfession(Config.villagerMechanicID);
        locatedTextures.add(locatedEntity);
    }
View Full Code Here

TOP

Related Classes of igwmod.gui.LocatedEntity

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.