LovePointCost.js 245 B

12345678910
  1. var LovePointCost = cc.Class({
  2. name:"LovePointCost",
  3. properties: {
  4. curLevel:cc.Integer,//当前等级
  5. LovePoint:cc.Integer,//好感度
  6. cost:cc.Integer,//升级好感度消耗
  7. },
  8. });
  9. module.exports = LovePointCost;