qwq77
Results
1
comments of
qwq77
// 定义事件类 class Event { private handlers: { [key: string]: Function[] } = {}; // 添加事件监听器 public on(eventName: string, handler: Function): void { if (!this.handlers[eventName]) { this.handlers[eventName] = []; }...