mirror of
https://github.com/smallmain/cocos-enhance-kit.git
synced 2024-12-26 11:48:29 +00:00
10 lines
169 B
JavaScript
10 lines
169 B
JavaScript
|
module.exports = {
|
||
|
|
||
|
'scene-get-engine-version': function (event) {
|
||
|
if (event.reply) {
|
||
|
event.reply(null, cc.ENGINE_VERSION);
|
||
|
}
|
||
|
},
|
||
|
|
||
|
};
|