Files
SPT-Server-Build/Core/Services/PlayerService.cs
T
2025-01-09 19:26:55 +00:00

12 lines
195 B
C#

using Core.Models.Eft.Common;
namespace Core.Services;
public class PlayerService
{
public int CalculateLevel(PmcData pmcData)
{
throw new NotImplementedException();
}
}