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

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,22 @@
import {getTransferedObjectUUID} from './classUtils';
const name = 'WebGLShader';
function uuid(id) {
return getTransferedObjectUUID(name, id);
}
export default class WebGLShader {
className = name;
constructor(id, type) {
this.id = id;
this.type = type;
}
static uuid = uuid;
uuid() {
return uuid(this.id);
}
}