UNPKG

pixelstream-cn

Version:

基于虚幻引擎的像素流平台

19 lines (16 loc) 351 B
class callback{ constructor(){ this.functions={}; } setFunction(id,fun){ this.functions[id]=fun; } runFunction(id,response){ let fun = this.functions[id]; if(fun){ delete this.functions[id]; fun(response); } } } export default new callback();