From 1d6520da317f66b2f5b1ac5327cdb27873a8e775 Mon Sep 17 00:00:00 2001 From: CWX Date: Mon, 6 Jan 2025 16:14:01 +0000 Subject: [PATCH] InventoryCallbacks --- .../Spt/Callbacks/InventoryCallbacks.cs | 78 +++++++++++++++++++ 1 file changed, 78 insertions(+) diff --git a/Core/Models/Spt/Callbacks/InventoryCallbacks.cs b/Core/Models/Spt/Callbacks/InventoryCallbacks.cs index 31bbf43e..ce8d6f0d 100644 --- a/Core/Models/Spt/Callbacks/InventoryCallbacks.cs +++ b/Core/Models/Spt/Callbacks/InventoryCallbacks.cs @@ -2,5 +2,83 @@ public class InventoryCallbacks { + public ItemEventRouterResponse MoveItem(PmcData pmcData, InventoryMoveRequestData info, string sessionID) + { + throw new NotImplementedException(); + } + public ItemEventRouterResponse RemoveItem(PmcData pmcData, InventoryRemoveRequestData info, string sessionID) + { + throw new NotImplementedException(); + } + + public ItemEventRouterResponse SplitItem(PmcData pmcData, InventorySplitRequestData info, string sessionID) + { + throw new NotImplementedException(); + } + + public ItemEventRouterResponse MergeItem(PmcData pmcData, InventoryMergeRequestData info, string sessionID) + { + throw new NotImplementedException(); + } + + public ItemEventRouterResponse TransferItem(PmcData pmcData, InventoryTransferRequestData info, string sessionID) + { + throw new NotImplementedException(); + } + + public ItemEventRouterResponse SwapItem(PmcData pmcData, InventorySwapRequestData info, string sessionID) + { + throw new NotImplementedException(); + } + + public ItemEventRouterResponse FoldItem(PmcData pmcData, InventoryFoldRequestData info, string sessionID) + { + throw new NotImplementedException(); + } + + public ItemEventRouterResponse ToggleItem(PmcData pmcData, InventoryToggleRequestData info, string sessionID) + { + throw new NotImplementedException(); + } + + public ItemEventRouterResponse TagItem(PmcData pmcData, InventoryTagRequestData info, string sessionID) + { + throw new NotImplementedException(); + } + + public ItemEventRouterResponse BindItem(PmcData pmcData, InventoryBindRequestData info, string sessionID) + { + throw new NotImplementedException(); + } + + public ItemEventRouterResponse ExamineItem(PmcData pmcData, InventoryExamineRequestData info, string sessionID) + { + throw new NotImplementedException(); + } + + public ItemEventRouterResponse ReadEncyclopedia(PmcData pmcData, InventoryReadEncyclopediaRequestData info, string sessionID) + { + throw new NotImplementedException(); + } + + public ItemEventRouterResponse SortInventory(PmcData pmcData, InventorySortRequestData info, string sessionID) + { + throw new NotImplementedException(); + } + + public ItemEventRouterResponse CreateMapMarker(PmcData pmcData, InventoryCreateMarkerRequestData info, string sessionID) + { + throw new NotImplementedException(); + } + + public ItemEventRouterResponse DeleteMapMarker(PmcData pmcData, InventoryDeleteMarkerRequestData info, string sessionID) + { + throw new NotImplementedException(); + } + + public ItemEventRouterResponse EditMapMarker(PmcData pmcData, InventoryEditMarkerRequestData info, string sessionID) + { + throw new NotImplementedException(); + } } \ No newline at end of file