public void Authenticate(System.Action <bool> callback) { if (m_impl != null) { m_impl.Authenticate(callback); } }
public void Authenticate(System.Action <bool> callback) { if (m_impl != null) { m_impl.Authenticate(success => { if (Authenticated != null) { Authenticated(success); } if (callback != null) { callback(success); } }); } }