import { Vector2 } from '../types/Vector2'; import { Vector3 } from '../types/Vector3'; import { Vector4 } from '../types/Vector4'; import { Color } from '../types/Color'; import { createFromHandle } from '../types/HandleRegistry'; import { inv, rai, raf, ras, rav, pvi, pvf, pvv, pvii, pvfi, _h, f, int, uint, float, Hash, u8, u16, u32, u64, i8, i16, i32, i64 } from '../types/NativeAliases'; export class Spactionproxy { /** * @returns data */ static getNextPendingBuyAction(): [boolean, number] { const result = inv<[boolean, number]>('0x1F471B79ACC98BEF', pvi(), rai()); return [!!result[0], result[1]]; } /** * @returns data */ static getNextPendingCraftingAction(): [boolean, number] { const result = inv<[boolean, number]>('0x1F471B79ACC97BEF', pvi(), rai()); return [!!result[0], result[1]]; } /** * @param p0 * @param p1 * @returns */ static processAction(p0: any, p1: boolean): boolean { return !!inv('0x1F471B79ACC94BEF', p0, p1, rai()); } /** * @returns */ static managerIsReady(): boolean { return !!inv('0x1F471B79ACC91BED', rai()); } /** * @returns */ static startManager(): boolean { return !!inv('0x1F471B79ACC91BEE', rai()); } /** * @returns */ static managerIsFailed(): boolean { return !!inv('0x1F471B79ACC91BEC', rai()); } }