UNPKG

459 BTypeScriptView Raw
1import type { BaseTexture } from '../textures/BaseTexture';
2/**
3 * Used by the batcher to build texture batches.
4 * Holds list of textures and their respective locations.
5 * @memberof PIXI
6 */
7export declare class BatchTextureArray {
8 /** Inside textures array. */
9 elements: BaseTexture[];
10 /** Respective locations for textures. */
11 ids: number[];
12 /** Number of filled elements. */
13 count: number;
14 constructor();
15 clear(): void;
16}