GITLAB

杨桓桓 / PCSdk_laya

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • pcsdk_laya
  • puchi_laya
  • src
  • event
  • EventData.ts
  • a99b6e61   add sdk 1.0.0 Browse Code »
    杨桓桓
    2020-03-05 14:54:55 +0800  
EventData.ts 388 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/*
* name;
*/
class EventData {
    constructor(target, type, listener, caller, args?) {
        this.target = target;
        this.type = type;
        this.listener = listener;
        this.caller = caller;
        this.args = args;
    }

    public target: Laya.EventDispatcher;
    public type: string;
    public listener: Function;
    public caller: any;
    public args: any[];
}