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

13 lines
218 B
C#

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