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

13 lines
233 B
C#

using SptCommon.Annotations;
namespace Core.Services;
[Injectable(InjectionType.Singleton)]
public class MatchLocationService
{
public void DeleteGroup(object info)
{
throw new NotImplementedException();
}
}