Ejemplo n.º 1
0
    public bool Move(Point point)
    {
        if (ActionPoint.PointsRemaining < MoveAPCost)
        {
            return(false);
        }
        if (!Movement.Move(point))
        {
            return(false);
        }

        ActionPoint.Use(MoveAPCost);

        return(true);
    }