Created
February 24, 2015 01:30
-
-
Save coronarob/51533717c29cf7ad7f7c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private void OnCoronaRuntimeLoaded( | |
object sender, CoronaLabs.Corona.WinRT.CoronaRuntimeEventArgs e) | |
{ | |
// Keep a reference to the Corona runtime environment. | |
// It's needed so that your login window's results can be dispatched to Corona. | |
fCoronaRuntimeEnvironment = e.CoronaRuntimeEnvironment; | |
fCoronaRuntimeEnvironment.AddEventListener("requestingLogin", OnRequestingLogin); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment