This commit is contained in:
Putoo
2026-07-06 14:44:15 +08:00
parent a1dbce8a96
commit 63d56b245e
21 changed files with 483 additions and 36 deletions

View File

@@ -8,4 +8,10 @@ public static class UserStateTool
var myFight = await fightService.GetUserFight(userId);
return myFight.Count > 0;
}
public static async Task SetUserMapDefault(string userId)
{
var mapService = App.GetService<IGameMapService>();
await mapService.SetUserMapDefault(userId);
}
}