Package net.glowstone.entity.objects

Examples of net.glowstone.entity.objects.GlowItem


        throw new UnsupportedOperationException("Not supported yet.");
    }

    @Override
    public Item dropItem(Location location, ItemStack item) {
        return new GlowItem(location, item);
    }
View Full Code Here


    }

    @Override
    public GlowItem createEntity(Location location, CompoundTag compound) {
        // item will be set by loading code below
        return new GlowItem(location, null);
    }
View Full Code Here

TOP

Related Classes of net.glowstone.entity.objects.GlowItem

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.