Skip to content

Instantly share code, notes, and snippets.

@JohannesLoot
Created February 8, 2022 10:30
Show Gist options
  • Select an option

  • Save JohannesLoot/00fdaed7ca365b05de12ddae05301610 to your computer and use it in GitHub Desktop.

Select an option

Save JohannesLoot/00fdaed7ca365b05de12ddae05301610 to your computer and use it in GitHub Desktop.
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