Add interface

This commit is contained in:
Dev 2024-02-01 09:50:50 +00:00
parent 8d8baec766
commit 406c59789a

View 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;
}