/// <summary>
    /// Call after running <see cref="Scan(bool)"/>.
    /// </summary>
    /// <returns>A List of ControllerDevice objects representing the discovered handheld controller devices. Choose one of these to connect with.</returns>
    public List <ControllerDevice> GetControllerDevices()
    {
        if (!IsBridgeInitialized)
        {
            return(null);
        }

        return(_controllerPlugin.GetControllerDevices());
    }