Follow the leader
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

18 lines
271B

  1. using System;
  2. using Steamworks;
  3. namespace Leadercraft.Server
  4. {
  5. public static class Tools
  6. {
  7. public static bool IsSteamAvailable
  8. {
  9. get => SteamClient.IsValid;
  10. }
  11. public static uint UserId
  12. {
  13. get => SteamClient.SteamId.AccountId;
  14. }
  15. }
  16. }