@origami-minecraft/devbuilds
Version:
Origami is a terminal-first Minecraft launcher that supports authentication, installation, and launching of Minecraft versions — with built-in support for Microsoft accounts, mod loaders, profile management, and more. Designed for power users, modders, an
33 lines (28 loc) • 610 B
text/typescript
export interface Options {
memory?: MemoryOptions;
window_size?: WindowSize;
fullscreen?: boolean;
safe_exit?: boolean;
max_sockets?: number;
connections?: number;
}
export interface FIXED_Options {
memory: FIXED_MemoryOptions;
window_size?: WindowSize;
fullscreen: boolean;
safe_exit: boolean;
max_sockets: number;
connections: number;
}
export interface FIXED_MemoryOptions {
min: string;
max: string;
}
export interface MemoryOptions {
min?: string;
max?: string;
}
export interface WindowSize {
height?: number;
width?: number;
}