using UnityEngine; using System.Collections; public class FacebookLoginRequiredDialog : ScreenBase { void OnLoginButtonMsg() { Logger.LogFlurryEvent("Facebook Login from Login Required Dialog"); #if UNITY_IPHONE MenuManager._instance.ShowChangeLoginPopup(); #endif #if UNITY_ANDROID WrapperFB.Login(); #endif Hide(); } }