MakeRaioXieYi.js 487 B

123456789101112131415161718192021222324252627282930313233
  1. var Global = require("Global")
  2. cc.Class({
  3. extends: cc.Component,
  4. properties: {
  5. },
  6. statics: {
  7. makeGameData(m, s, data) {
  8. return null;
  9. },
  10. makeRoll: function (data) {//SUB_GR_TABLE_TALK
  11. var arrayBuffer = new ArrayBuffer(4 + 8);
  12. var dv = new DataView(arrayBuffer);
  13. dv.pos = 8;
  14. Global.SetInt32(dv, data.nJetton);
  15. return dv;
  16. },
  17. },
  18. start() {
  19. },
  20. });