Files
SPT-Server-Build/Core/Services/MatchLocationService.cs
T
2025-01-11 18:14:39 +00:00

13 lines
228 B
C#

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