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-16 00:35:59 +00:00
|
|
|
|
|
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
|
|
|
|
{
|
|
|
|
|
public static readonly ExclusiveGroup eventsExclusiveGroup = new ExclusiveGroup();
|
|
|
|
|
|
|
|
|
|
public static uint eventID;
|
|
|
|
|
}
|
|
|
|
|
}
|