/**
* MIT License
*
* Copyright (c) 2022 JabDoesThings
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*
*/
/** @noSelfInFile */
///
declare module '@shughesuk/pipewrench' {
export namespace zombie.core.stash {
/**
* @customConstructor Stash.new
* @
* [CLASS] zombie.core.stash.Stash
*/
export class Stash {
/**
* Constructors:
* - (String arg0)
*/
constructor(arg0: string);
/**
* Method Parameters:
* - (Empty): number
*/
getBuildingX(): number;
/**
* Method Parameters:
* - (Empty): number
*/
getBuildingY(): number;
/**
* Method Parameters:
* - (Empty): string
*/
getItem(): string;
/**
* Method Parameters:
* - (Empty): string
*/
getName(): string;
/**
* Method Parameters:
* - (KahluaTableImpl arg0): void
*/
load(arg0: se.krka.kahlua.j2se.KahluaTableImpl): void;
}
/**
* @customConstructor StashBuilding.new
* @
* [CLASS] zombie.core.stash.StashBuilding
*/
export class StashBuilding {
/**
* Constructors:
* - (String arg0, int arg1, int arg2)
*/
constructor(arg0: string, arg1: number, arg2: number);
/**
* Method Parameters:
* - (Empty): string
*/
getName(): string;
}
/**
* @customConstructor StashSystem.new
* @
* [CLASS] zombie.core.stash.StashSystem
*/
export class StashSystem {
/** java.util.ArrayList */
static allStashes?: java.util.ArrayList;
/** java.util.ArrayList */
static buildingsToDo?: java.util.ArrayList;
/** java.util.ArrayList */
static possibleStashes?: java.util.ArrayList;
/**
* Constructors:
* - (Empty Constructor)
*/
constructor();
/**
* @noSelf
*
* Method Parameters:
* - (Empty): void
*/
static Reset(): void;
/**
* @noSelf
*
* Method Parameters:
* - (InventoryItem arg0): void
*/
static checkStashItem(arg0: zombie.inventory.InventoryItem): void;
/**
* @noSelf
*
* Method Parameters:
* - (BuildingDef arg0): void
*/
static doBuildingStash(arg0: zombie.iso.BuildingDef): void;
/**
* @noSelf
*
* Method Parameters:
* - (Stash arg0, InventoryItem arg1): void
*/
static doStashItem(arg0: zombie.core.stash.Stash, arg1: zombie.inventory.InventoryItem): void;
/**
* @noSelf
*
* Method Parameters:
* - (Empty): java.util.ArrayList
*/
static getPossibleStashes(): java.util.ArrayList;
/**
* @noSelf
*
* Method Parameters:
* - (String arg0): zombie.core.stash.Stash
*/
static getStash(arg0: string): zombie.core.stash.Stash;
/**
* @noSelf
*
* Method Parameters:
* - (Empty): void
*/
static init(): void;
/**
* @noSelf
*
* Method Parameters:
* - (Empty): void
*/
static initAllStashes(): void;
/**
* @noSelf
*
* Method Parameters:
* - (ByteBuffer arg0, int arg1): void
*/
static load(arg0: java.nio.ByteBuffer, arg1: number): void;
/**
* @noSelf
*
* Method Parameters:
* - (String arg0): void
*/
static prepareBuildingStash(arg0: string): void;
/**
* @noSelf
*
* Method Parameters:
* - (Empty): void
*/
static reinit(): void;
/**
* @noSelf
*
* Method Parameters:
* - (ByteBuffer arg0): void
*/
static save(arg0: java.nio.ByteBuffer): void;
/**
* @noSelf
*
* Method Parameters:
* - (BuildingDef arg0): void
*/
static visitedBuilding(arg0: zombie.iso.BuildingDef): void;
}
}
}