Valens-AIO/config/items.ts

20 lines
401 B
TypeScript

export interface ItemsConfig
{
standardStash: Stash
behindStash: Stash
escapeStash: Stash
eodStash: Stash
examinedByDefault: boolean
removeBackpackFilter: boolean
removeKeyUsageMax: boolean
dollarsMaxStack: number
eurosMaxStack: number
roublesMaxStack: number
weightModifier: number
}
export interface Stash
{
vertical: number
horizontal: number
}