Files
SPT-Server-Build/Core/Models/Spt/Callbacks/InsuranceCallbacks.cs
T
2025-01-06 16:09:37 +00:00

24 lines
585 B
C#

namespace Core.Models.Spt.Callbacks;
public class InsuranceCallbacks
{
public SptProfile OnLoad(string sessionID)
{
throw new NotImplementedException();
}
public object GetInsuranceCost(string url, GetInsuranceCostRequestData info, string sessionID)
{
throw new NotImplementedException();
}
public object Insure(PmcData pmcData, InsureRequestData info, string sessionID)
{
throw new NotImplementedException();
}
public bool Update(int secondsSinceLastRun)
{
throw new NotImplementedException();
}
}