Package com.sk89q.worldedit.history.change

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


        public boolean remove() {
            Location location = entity.getLocation();
            BaseEntity state = entity.getState();
            boolean success = entity.remove();
            if (state != null && success) {
                changeSet.add(new EntityRemove(location, state));
            }
            return success;
        }
View Full Code Here

TOP

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

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.