Package com.forgeessentials.util.selections

Examples of com.forgeessentials.util.selections.Selection


    @Override
    public Selection getSelection(EntityPlayerMP player)
    {
        Point[] points = getPoints(player);
        if (points != null)
            return new Selection(points[0], points[1]);
        return null;
    }
View Full Code Here


            PlayerInfo pi = PlayerInfo.getPlayerInfo(player);
            if (pi.sel1 == null || pi.sel2 == null)
            {
                return null;
            }
            return new Selection(pi.sel1, pi.sel2);
        }
View Full Code Here

TOP

Related Classes of com.forgeessentials.util.selections.Selection

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.