Files
SPT-Server-Build/Core/Helpers/UtilityHelper.cs
T
2025-01-11 21:01:32 +00:00

13 lines
213 B
C#

using Core.Annotations;
namespace Core.Helpers;
[Injectable]
public class UtilityHelper
{
public List<T> ArrayIntersect<T>(List<T> a, List<T> b)
{
throw new NotImplementedException();
}
}