Package com.sk89q.worldedit.history.change

Examples of com.sk89q.worldedit.history.change.EntityCreate


    @Nullable
    @Override
    public Entity createEntity(Location location, BaseEntity state) {
        Entity entity = super.createEntity(location, state);
        if (state != null) {
            changeSet.add(new EntityCreate(location, state, entity));
        }
        return entity;
    }
View Full Code Here

TOP

Related Classes of com.sk89q.worldedit.history.change.EntityCreate

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.