diff --git a/Core/Models/Spt/Callbacks/HideoutCallbacks.cs b/Core/Models/Spt/Callbacks/HideoutCallbacks.cs index cf3e75d5..d95efcd6 100644 --- a/Core/Models/Spt/Callbacks/HideoutCallbacks.cs +++ b/Core/Models/Spt/Callbacks/HideoutCallbacks.cs @@ -2,5 +2,53 @@ public class HideoutCallbacks { - + public ItemEventRouterRepsonse Upgrade(PmcData pmcData, HideoutUpgraderequestData info, string sessionID) + { + throw new NotImplementedException(); + } + + public ItemEventRouterRepsonse UpgradeComplete(PmcData pmcData, HideoutUpgradeCompleterequestData info, string sessionID) + { + throw new NotImplementedException(); + } + + public ItemEventRouterRepsonse PutItemsInAreaSlots(PmcData pmcData, HideoutPutItemInRequestData info, string sessionID) + { + throw new NotImplementedException(); + } + + public ItemEventRouterRepsonse TakeItemsFromAreaSlots(PmcData pmcData, HideoutTakeItemOutRequestData info, string sessionID) + { + throw new NotImplementedException(); + } + + public ItemEventRouterRepsonse ToggleArea(PmcData pmcData, HideoutToggleAreaRequestData info, string sessionID) + { + throw new NotImplementedException(); + } + + public ItemEventRouterRepsonse SingleProductionStart(PmcData pmcData, HideoutSingleProductionStartRequestData info, string sessionID) + { + throw new NotImplementedException(); + } + + public ItemEventRouterRepsonse ScavCaseProductionStart(PmcData pmcData, HideoutScavCaseStartRequestData info, string sessionID) + { + throw new NotImplementedException(); + } + + public ItemEventRouterRepsonse ContinuousProductionStart(PmcData pmcData, HideoutContinuousProductionRequestData info, string sessionID) + { + throw new NotImplementedException(); + } + + public ItemEventRouterRepsonse TakeProduction(PmcData pmcData, HideoutTakeProductionRequestData info, string sessionID) + { + throw new NotImplementedException(); + } + + public bool Update(int timeSinceLastRun) + { + throw new NotImplementedException(); + } } \ No newline at end of file diff --git a/Core/Models/Spt/Callbacks/HttpCallbacks.cs b/Core/Models/Spt/Callbacks/HttpCallbacks.cs index 970f4ec7..42e2076a 100644 --- a/Core/Models/Spt/Callbacks/HttpCallbacks.cs +++ b/Core/Models/Spt/Callbacks/HttpCallbacks.cs @@ -2,5 +2,18 @@ public class HttpCallbacks { - + public void Load() + { + throw new NotImplementedException(); + } + + public void SendImage(string sessionID, object req, object resp, object body) + { + throw new NotImplementedException(); + } + + public string GetImage() + { + throw new NotImplementedException(); + } } \ No newline at end of file diff --git a/Core/Models/Spt/Callbacks/InsuranceCallbacks.cs b/Core/Models/Spt/Callbacks/InsuranceCallbacks.cs index 65a45288..d8225f76 100644 --- a/Core/Models/Spt/Callbacks/InsuranceCallbacks.cs +++ b/Core/Models/Spt/Callbacks/InsuranceCallbacks.cs @@ -2,5 +2,23 @@ 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(); + } } \ No newline at end of file