Tweak exclusive group names

This commit is contained in:
NGnius (Graham) 2020-05-13 16:56:47 -04:00
parent 9cb6917d28
commit 205b3fc51a

View file

@ -10,10 +10,10 @@ namespace GamecraftModdingAPI.Utility
{
public static class ApiExclusiveGroups
{
public static readonly ExclusiveGroup eventsExclusiveGroup = new ExclusiveGroup();
public static readonly ExclusiveGroup eventsExclusiveGroup = new ExclusiveGroup("GamecraftModdingAPI EventGroup");
public static uint eventID;
public static readonly ExclusiveGroup versionGroup = new ExclusiveGroup("GamecraftModdingAPIVersion");
public static readonly ExclusiveGroup versionGroup = new ExclusiveGroup("GamecraftModdingAPI VersionGroup");
}
}