Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

32 строки
1.3 KiB

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using Color = System.Drawing.Color;
  7. namespace Example.Models.StaticData
  8. {
  9. public static class Form1Module
  10. {
  11. public static string lbl_Main_GameOpen { get; set; }
  12. public static string lbl_Main_ServerConnection { get; set; }
  13. public static string lbl_Main_SteamDetected { get; set; }
  14. public static int ShowInventoryOverlayButton { get; set; }
  15. public static string num { get; set; }
  16. public static string CurrentServer { get; set; }
  17. public static string OverlayCanOpen { get; set; }
  18. public static System.Drawing.Color OverlayCanOpenForecolor { get; set; }
  19. public static System.Drawing.Color OverlayCanOpenBackcolor { get; set; }
  20. public static bool OverlayCanOpenCheckBox { get; set; }
  21. public static string WarningMsg { get; set; }
  22. public static bool KeyhidePress { get; set; }
  23. public static Color BackGround_Color { get; set; }
  24. public static Color Text_Color { get; set; }
  25. public static Color Label_Color { get; set; }
  26. public static bool ShowSquadMembers { get; set; }
  27. public static bool MembersToSee { get; set; }
  28. public static bool PosPrinted { get; set; }
  29. }
  30. }