PriceData.js 188 B

123456789
  1. var PriceData = cc.Class({
  2. name:"PriceData",
  3. properties: {
  4. lowprice:cc.Integer,
  5. highprice:cc.Integer,
  6. probability:0.25,
  7. },
  8. });
  9. module.exports = PriceData;