UNPKG

three

Version:

JavaScript 3D library

17 lines (9 loc) 180 B
let _id = 0; class BindGroup { constructor( name = '', bindings = [] ) { this.name = name; this.bindings = bindings; this.id = _id ++; } } export default BindGroup;