Ai
6 Star 51 Fork 21

dream/CocosCreator简易开发框架

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
EventManager.ts 368 Bytes
一键复制 编辑 原始数据 按行查看 历史
dream 提交于 2021-03-24 09:18 +08:00 . 本地化存储
/**
*
* @file EventManager.ts
* @author dream
* @description 全局分发管理
*
*/
import { EventTarget } from "cc";
export class EventManager {
private static _instance: EventTarget;
public static get instance() {
if (null == this._instance) {
this._instance = new EventTarget();
}
return this._instance;
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/dream93/scl.git
git@gitee.com:dream93/scl.git
dream93
scl
CocosCreator简易开发框架
main

搜索帮助