zhuguoqing ff550d5d6a init
2022-05-22 10:32:02 +08:00

14 lines
250 B
JavaScript

/**
* Created by Y.X on 16/7/9.
*/
var MessageVo = cc.Class({
update: function (mId, proto, cb) {
this.msgId = mId;
this.protoData = proto;
this.callBack = cb;
return this;
}
});
module.exports = MessageVo;