Files
SPT-Server-Build/Libraries/Core/Services/OpenZoneService.cs
T
2025-01-19 17:45:48 +00:00

26 lines
665 B
C#

using SptCommon.Annotations;
namespace Core.Services;
[Injectable(InjectionType.Singleton)]
public class OpenZoneService
{
/// <summary>
/// Add open zone to specified map
/// </summary>
/// <param name="locationId">map location (e.g. factory4_day)</param>
/// <param name="zoneToAdd">zone to add</param>
public void AddZoneToMap(string locationId, string zoneToAdd)
{
throw new NotImplementedException();
}
/// <summary>
/// Add open zones to all maps found in config/location.json to db
/// </summary>
public void ApplyZoneChangesToAllMaps()
{
throw new NotImplementedException();
}
}