more types

This commit is contained in:
CWX
2025-01-06 16:09:37 +00:00
parent b95ccad7c6
commit ce11652ee7
3 changed files with 82 additions and 3 deletions
+49 -1
View File
@@ -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();
}
}
+14 -1
View File
@@ -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();
}
}
@@ -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();
}
}