21 lines
659 B
JavaScript
21 lines
659 B
JavaScript
"use strict";
|
|
cc._RF.push(module, 'c24eepf+7NOtbvc2j372Vmt', 'partner_model');
|
|
// Scripts/mod/partner/partner_model.js
|
|
|
|
"use strict";
|
|
|
|
// --------------------------------------------------------------------
|
|
// @author: xxx@syg.com(必填, 创建模块的人员)
|
|
// @description:
|
|
// 这里填写详细说明,主要填写该模块的功能简要
|
|
// <br/>Create: 2019-01-28 20:23:19
|
|
// --------------------------------------------------------------------
|
|
var BridgeClass = require("bridge.class");
|
|
var PartnerModel = cc.Class({
|
|
"extends": BridgeClass,
|
|
ctor: function ctor() {},
|
|
properties: {},
|
|
initConfig: function initConfig() {}
|
|
});
|
|
|
|
cc._RF.pop(); |