|
|
@@ -10,10 +10,34 @@ namespace GamecraftModdingAPI.Utility |
|
|
|
{ |
|
|
|
public static class ApiExclusiveGroups |
|
|
|
{ |
|
|
|
public static readonly ExclusiveGroup eventsExclusiveGroup = new ExclusiveGroup("GamecraftModdingAPI EventGroup"); |
|
|
|
private static ExclusiveGroup _eventsExclusiveGroup = null; |
|
|
|
|
|
|
|
public static ExclusiveGroup eventsExclusiveGroup |
|
|
|
{ |
|
|
|
get |
|
|
|
{ |
|
|
|
if (_eventsExclusiveGroup == null) |
|
|
|
{ |
|
|
|
_eventsExclusiveGroup = new ExclusiveGroup("GamecraftModdingAPI EventGroup"); |
|
|
|
} |
|
|
|
return _eventsExclusiveGroup; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
public static uint eventID; |
|
|
|
|
|
|
|
public static readonly ExclusiveGroup versionGroup = new ExclusiveGroup("GamecraftModdingAPI VersionGroup"); |
|
|
|
private static ExclusiveGroup _versionGroup = null; |
|
|
|
|
|
|
|
public static ExclusiveGroup versionGroup |
|
|
|
{ |
|
|
|
get |
|
|
|
{ |
|
|
|
if (_versionGroup == null) |
|
|
|
{ |
|
|
|
_versionGroup = new ExclusiveGroup("GamecraftModdingAPI VersionGroup"); |
|
|
|
} |
|
|
|
return _versionGroup; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |