mirror of
https://github.com/tidys/cc-inspector-chrome
synced 2025-04-22 09:58:41 +00:00
9 lines
206 B
TypeScript
9 lines
206 B
TypeScript
|
declare const cc:any;
|
||
|
export function isVersion3() {
|
||
|
if (typeof cc.ENGINE_VERSION === "string") {
|
||
|
const version: string = cc.ENGINE_VERSION;
|
||
|
return version.startsWith("3.")
|
||
|
}
|
||
|
return false;
|
||
|
}
|