14 lines
262 B
C#
14 lines
262 B
C#
using SptCommon.Annotations;
|
|
using Core.Models.Eft.Common;
|
|
|
|
namespace Core.Services;
|
|
|
|
[Injectable(InjectionType.Singleton)]
|
|
public class PlayerService
|
|
{
|
|
public int CalculateLevel(PmcData pmcData)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|