GameCenterSingleton.ProcessAuthentication C# (CSharp) Метод

ProcessAuthentication() приватный Метод

private ProcessAuthentication ( bool success ) : void
success bool
Результат void
	void ProcessAuthentication(bool success)
	{
		if(success)
		{
			Debug.Log ("Authenticated, checking achievements");
			
			LoadAchievements();
			GameCenterPlatform.ShowDefaultAchievementCompletionBanner(true);    
		}
		else
		{
			Debug.Log ("Failed to authenticate");
		}
	}    
	void ProcessLoadedAchievements (IAchievement[] achievements)