- using UnityEngine;
- using System.Collections;
- public class FacebookLoginRequiredDialog : ScreenBase
- {
- void OnLoginButtonMsg()
- {
- // Logger.LogFlurryEvent("Facebook Login from Login Required Dialog");
- SocialManager.Instance.Login((isSuccessful, errorReason) =>
- {
- });
- Hide();
- }
- }
|