A stable modding interface between Techblox and mods https://mod.exmods.org/
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

56 satır
1.1KB

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using Svelto.ECS;
  7. namespace TechbloxModdingAPI.Utility
  8. {
  9. public static class ApiExclusiveGroups
  10. {
  11. private static ExclusiveGroup _eventsExclusiveGroup = null;
  12. public static ExclusiveGroup eventsExclusiveGroup
  13. {
  14. get
  15. {
  16. if (_eventsExclusiveGroup == null)
  17. {
  18. _eventsExclusiveGroup = new ExclusiveGroup("TechbloxModdingAPI EventGroup");
  19. }
  20. return _eventsExclusiveGroup;
  21. }
  22. }
  23. public static uint eventID;
  24. private static ExclusiveGroup _versionGroup = null;
  25. public static ExclusiveGroup versionGroup
  26. {
  27. get
  28. {
  29. if (_versionGroup == null)
  30. {
  31. _versionGroup = new ExclusiveGroup("TechbloxModdingAPI VersionGroup");
  32. }
  33. return _versionGroup;
  34. }
  35. }
  36. private static ExclusiveGroup _customBlockGroup;
  37. public static ExclusiveGroup customBlockGroup
  38. {
  39. get
  40. {
  41. if (_customBlockGroup == null)
  42. _customBlockGroup = new ExclusiveGroup("TechbloxModdingAPI CustomBlockGroup");
  43. return _customBlockGroup;
  44. }
  45. }
  46. }
  47. }