Esempio n. 1
0
	private void ShowError (WebServiceErrorCodes code, string error)
	{
		loginService.SucceededEvent -= LoadMainScene;
		loginService.FailedEvent -= ShowError;
		if(code == WebServiceErrorCodes.LoginError && Failed != null)
			Failed (error);
	}
Esempio n. 2
0
	private void FailedResetPassword (WebServiceErrorCodes arg1, string arg2)
	{

	}
Esempio n. 3
0
	private void LoadLoginScene (WebServiceErrorCodes code, string error)
	{
		startSessionService.FailedEvent -= LoadLoginScene;
		startSessionService.SucceededEvent -= LoadMainScene;
		Application.LoadLevel("Login");
	}