interface PoolEntry {
    count: number;
    data: number;
    extra: ItemExtraData;
    id: number;
    slot: number;
    getAmountOfItem(amount: number): number;
    hasExtra(): boolean;
    isMatches(other: PoolEntry): boolean;
    isMatchesWithExtra(other: PoolEntry): boolean;
}

Methods

Properties

count: number
data: number
id: number
slot: number

Copyright © 2024 Nernar. Copyright © 2020 #mineprogramming. Built with ❤ and TypeDoc.