private void FindViews() { if (this.m_viewsFound) { return; } this.m_explorerView = GetComponentInChildren <ExplorerView>(true); this.m_subscriptionsView = GetComponentInChildren <SubscriptionsView>(true); this.m_inspectorView = GetComponentInChildren <InspectorView>(true); this.m_loginDialog = GetComponentInChildren <LoginDialog>(true); this.m_viewsFound = true; }
private void FindViews() { if (this.m_viewsFound) { return; } this.m_explorerView = GetComponentInChildren <ExplorerView>(true); this.m_subscriptionsView = GetComponentInChildren <SubscriptionsView>(true); this.m_inspectorView = GetComponentInChildren <InspectorView>(true); this.m_loginDialog = GetComponentInChildren <LoginDialog>(true); this.m_messageDialog = GetComponentInChildren <MessageDialog>(true); this.m_reportDialog = GetComponentInChildren <ReportDialog>(true); this.m_viewsFound = true; this.m_views = this.gameObject.GetComponentsInChildren <IBrowserView>(true); }