UNPKG

bc-minecraft-bedrock-project

Version:

The typescript library responsible for reading/parsing minecraft bedrock data

28 lines 540 B
/** */ export interface TextureAtlas { /** */ resource_pack_name: string; /** */ texture_data: Record<string, TextureData>; /** */ texture_name?: string; /** */ padding?: number; /** */ num_mip_levels?: number; } /** */ export declare namespace TextureAtlas { /** * * @param value * @returns */ function is(value: any): value is TextureAtlas; } /** */ export interface TextureData { /** */ textures: string | string[]; } //# sourceMappingURL=texture-atlas.d.ts.map