Files

11 lines
222 B
JavaScript
Raw Permalink Normal View History

2023-07-24 15:00:19 +08:00
export default class WebGLActiveInfo {
className = 'WebGLActiveInfo';
constructor({
type, name, size
}) {
this.type = type;
this.name = name;
this.size = size;
}
}