UNPKG

bc-minecraft-bedrock-project

Version:

The typescript library responsible for reading/parsing minecraft bedrock data

29 lines (28 loc) 522 B
import { SMap } from "../../types"; /** */ export interface TextureAtlas { /** */ resource_pack_name: string; /** */ texture_data: SMap<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[]; }