UNPKG

308 BJavaScriptView Raw
1import { DRAW_MODES } from '@pixi/constants';
2
3class BatchDrawCall {
4 constructor() {
5 this.texArray = null;
6 this.blend = 0;
7 this.type = DRAW_MODES.TRIANGLES;
8 this.start = 0;
9 this.size = 0;
10 this.data = null;
11 }
12}
13
14export { BatchDrawCall };
15//# sourceMappingURL=BatchDrawCall.mjs.map