using Core.Models.Eft.Common;
using Core.Models.Eft.Health;
using Core.Models.Eft.HttpResponse;
using Core.Models.Eft.ItemEvent;
namespace Core.Callbacks;
public class HealthCallbacks
{
public HealthCallbacks()
{
}
///
/// Custom spt server request found in modules/QTEPatch.cs
///
///
/// HealthListener.Instance.CurrentHealth class
/// session id
/// empty response, no data sent back to client
public GetBodyResponseData handleWorkoutEffects(string url, WorkoutData info, string sessionID)
{
throw new NotImplementedException();
}
///
/// Handle Eat
///
///
///
///
///
///
public ItemEventRouterResponse OffraidEat(PmcData pmcData, OffraidEatRequestData info, string sessionID)
{
throw new NotImplementedException();
}
///
/// Handle Heal
///
///
///
///
///
///
public ItemEventRouterResponse OffraidHeal(PmcData pmcData, OffraidHealRequestData info, string sessionID)
{
throw new NotImplementedException();
}
///
/// Handle RestoreHealth
///
///
///
///
///
///
public ItemEventRouterResponse HealthTreatment(PmcData pmcData, HealthTreatmentRequestData info, string sessionID)
{
throw new NotImplementedException();
}
}