14 lines
250 B
JavaScript
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; |