diff --git a/project/src/models/eft/inventory/IAddItemsDirectRequest.ts b/project/src/models/eft/inventory/IAddItemsDirectRequest.ts new file mode 100644 index 00000000..012bef8e --- /dev/null +++ b/project/src/models/eft/inventory/IAddItemsDirectRequest.ts @@ -0,0 +1,11 @@ +import { Item } from "../common/tables/IItem"; + +export interface IAddItemsDirectRequest +{ + /** Item and child mods to add to player inventory */ + itemsWithModsToAdd: Item[][]; + foundInRaid: boolean; + /** Runs after EACH item with children is added */ + callback: (buyCount: number) => void; + useSortingTable: boolean; +} \ No newline at end of file