Created
February 8, 2022 10:30
-
-
Save JohannesLoot/00fdaed7ca365b05de12ddae05301610 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
| public void StartSession() | |
| { | |
| LootLockerSDKManager.StartGuestSession((response) => | |
| { | |
| if (!response.success) | |
| { | |
| Debug.Log("Error starting LootLocker session"); | |
| return; | |
| } | |
| Debug.Log("Successfully started LootLocker session"); | |
| playerLoggedIn = true; | |
| }); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment