Follow the leader
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
此仓库已存档。您可以查看文件和克隆,但不能推送或创建工单/合并请求。

29 行
459B

  1. using System;
  2. using Steamworks;
  3. using RobocraftX.Common;
  4. namespace Leadercraft.Server
  5. {
  6. public static class Tools
  7. {
  8. public static bool IsSteamAvailable
  9. {
  10. get => SteamClient.IsValid;
  11. }
  12. public static ulong UserId
  13. {
  14. get => SteamClient.SteamId.Value;
  15. }
  16. public static string UserName
  17. {
  18. get => SteamClient.Name;
  19. }
  20. public static ulong GameId
  21. {
  22. get => GameMode.SaveGameDetails.WorkshopId;
  23. }
  24. }
  25. }