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