12 lines
195 B
C#
12 lines
195 B
C#
using Core.Models.Eft.Common;
|
|
|
|
namespace Core.Services;
|
|
|
|
public class PlayerService
|
|
{
|
|
public int CalculateLevel(PmcData pmcData)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|