UNPKG

320 BJavaScriptView Raw
1"use strict";
2class BatchTextureArray {
3 constructor() {
4 this.elements = [], this.ids = [], this.count = 0;
5 }
6 clear() {
7 for (let i = 0; i < this.count; i++)
8 this.elements[i] = null;
9 this.count = 0;
10 }
11}
12exports.BatchTextureArray = BatchTextureArray;
13//# sourceMappingURL=BatchTextureArray.js.map