"use strict";
|
cc._RF.push(module, 'c28a7tGGTRGFJ2G3cJObrQR', 'guide_model');
|
// Scripts/mod/guide/guide_model.js
|
|
"use strict";
|
|
// --------------------------------------------------------------------
|
// @author: xxx@syg.com(必填, 创建模块的人员)
|
// @description:
|
// 这里填写详细说明,主要填写该模块的功能简要
|
// <br/>Create: 2019-04-15 14:38:52
|
// --------------------------------------------------------------------
|
var GuideModel = cc.Class({
|
"extends": BaseClass,
|
ctor: function ctor() {},
|
properties: {},
|
initConfig: function initConfig() {},
|
getGuideLastPos: function getGuideLastPos() {
|
// this.last_guide_pos = pos;
|
return this.last_guide_pos;
|
},
|
setGuideLastPos: function setGuideLastPos(pos) {
|
this.last_guide_pos = pos;
|
},
|
getTaskGuideLastPos: function getTaskGuideLastPos() {
|
return this.task_last_guide_pos;
|
},
|
setTaskGuideLastPos: function setTaskGuideLastPos(pos) {
|
this.task_last_guide_pos = pos;
|
}
|
});
|
|
cc._RF.pop();
|