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

14 lines
257 B
C#

using Core.Annotations;
using Core.Models.Eft.Common;
namespace Core.Services;
[Injectable(InjectionType.Singleton)]
public class PlayerService
{
public int CalculateLevel(PmcData pmcData)
{
throw new NotImplementedException();
}
}