bitmap.js 197 B

12345678
  1. module.exports = {
  2. 'getCocosVersion': function(event) {
  3. if (event.reply) {
  4. let version = cc.ENGINE_VERSION;
  5. event.reply(null, version);
  6. }
  7. }
  8. };