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