import { _decorator, Event } from 'cc'; const { ccclass } = _decorator; @ccclass('EventCustom') export class EventCustom extends Event { public data: any = null; constructor(name: string, bubbles?: boolean, data?: any) { super(name, bubbles); this.data = data; } }