Add interface
This commit is contained in:
parent
8d8baec766
commit
406c59789a
11
project/src/models/eft/inventory/IAddItemsDirectRequest.ts
Normal file
11
project/src/models/eft/inventory/IAddItemsDirectRequest.ts
Normal file
@ -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;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user