Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

38 rader
1.4 KiB

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Diagnostics;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace Example.Models.StaticData
  8. {
  9. public static class UserPCSettings
  10. {
  11. public static bool gameDetection { get; set; }
  12. public static string gameSettingsPath { get; set; }
  13. public static string gameLogsPath { get; set; }
  14. public static bool serverConnection { get; set; }
  15. public static string activeSteamID { get; set; }
  16. public static int maxScreenHeight { get; set; }
  17. public static int maxScreenWidth { get; set; }
  18. public static int FullScreenActivated { get; set; }
  19. public static int PreferredFullscreenMode { get; set; }
  20. public static int ResolutionSizeX { get; set; }
  21. public static int ResolutionSizeY { get; set; }
  22. public static Process[] processNameList { get; set; }
  23. public static string ScumPath { get; set; }
  24. public static long _scumLogPathPosition { get; set; }
  25. public static string joinedGameIP { get; set; }
  26. public static string joinedGamePort { get; set; }
  27. public static bool _scumAtMainMenu { get; set; }
  28. public static string _processInFocus { get; set; }
  29. }
  30. public static class SetThreadStatus
  31. {
  32. public static int readinglogs { get; set; }
  33. public static int dochecks { get; set; }
  34. }
  35. }