"use strict"; cc._RF.push(module, 'a62fdlsGkJDnp1kj4chhtEi', 'pokedex_model'); // Scripts/mod/pokedex/pokedex_model.js "use strict"; // -------------------------------------------------------------------- // @author: xxx@syg.com(必填, 创建模块的人员) // @description: // 这里填写详细说明,主要填写该模块的功能简要 //
Create: 2019-04-08 10:31:20 // -------------------------------------------------------------------- var PokedexModel = cc.Class({ "extends": BaseClass, ctor: function ctor() {}, properties: {}, initConfig: function initConfig() { this.all_data = {}; }, getAllData: function getAllData() { if (this.all_data) { return this.all_data; } } }); cc._RF.pop();