started working on player moves.

This commit is contained in:
2022-11-09 18:50:51 -06:00
parent da76917490
commit f7f752b694
13 changed files with 232 additions and 271 deletions

View File

@@ -36,7 +36,7 @@ public class AccountManager
public async Task LoginWithGuestAccount()
{
var response = await shogiApi.GetGuestToken();
var response = await shogiApi.GetToken();
if (response != null)
{
User = new User
@@ -87,7 +87,7 @@ public class AccountManager
var platform = await localStorage.GetAccountPlatform();
if (platform == WhichAccountPlatform.Guest)
{
var response = await shogiApi.GetGuestToken();
var response = await shogiApi.GetToken();
if (response != null)
{
User = new User