TechbloxModdingAPI/GamecraftModdingAPI/Utility/ApiExclusiveGroups.cs

20 lines
508 B
C#
Raw Normal View History

2019-12-14 04:42:55 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2019-12-14 04:42:55 +00:00
using Svelto.ECS;
namespace GamecraftModdingAPI.Utility
{
2019-12-19 20:42:50 +00:00
public static class ApiExclusiveGroups
2019-12-14 04:42:55 +00:00
{
2020-05-13 20:56:47 +00:00
public static readonly ExclusiveGroup eventsExclusiveGroup = new ExclusiveGroup("GamecraftModdingAPI EventGroup");
2019-12-14 04:42:55 +00:00
public static uint eventID;
2020-05-13 20:56:47 +00:00
public static readonly ExclusiveGroup versionGroup = new ExclusiveGroup("GamecraftModdingAPI VersionGroup");
2019-12-14 04:42:55 +00:00
}
}