13 lines
233 B
JavaScript
13 lines
233 B
JavaScript
"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
|