Files
nothoughts/node_modules/pixi.js/lib/rendering/renderers/gl/buffer/GlBuffer.js
2025-08-04 18:57:35 +02:00

15 lines
255 B
JavaScript

'use strict';
"use strict";
class GlBuffer {
constructor(buffer, type) {
this.buffer = buffer || null;
this.updateID = -1;
this.byteLength = -1;
this.type = type;
}
}
exports.GlBuffer = GlBuffer;
//# sourceMappingURL=GlBuffer.js.map