好友资料,申请好友流程,调整

This commit is contained in:
2022-01-26 13:53:59 +08:00
parent f4e5166508
commit b24d2a4906
35 changed files with 5294 additions and 107 deletions

View File

@@ -0,0 +1,11 @@
export default class WebGLActiveInfo {
className = 'WebGLActiveInfo';
constructor({
type, name, size
}) {
this.type = type;
this.name = name;
this.size = size;
}
}