22 lines
595 B
TypeScript
22 lines
595 B
TypeScript
import { Node } from 'cc';
|
|
interface tipsHeroAttrChange extends Node{
|
|
nodesType:{
|
|
"zl_bg_img1" : tipsHeroAttrChange_zl_bg_img1,
|
|
"txt" : tipsHeroAttrChange_zl_bg_img1_txt,
|
|
|
|
}
|
|
}
|
|
interface tipsHeroAttrChange_zl_bg_img1 extends Node{
|
|
nodesType:{
|
|
"txt" : tipsHeroAttrChange_zl_bg_img1_txt,
|
|
|
|
}
|
|
}
|
|
interface tipsHeroAttrChange_zl_bg_img1_txt extends Node{
|
|
}
|
|
declare global {
|
|
type tree_tipsHeroAttrChange = {
|
|
"tipsHeroAttrChange" : tipsHeroAttrChange,
|
|
"zl_bg_img1" : tipsHeroAttrChange_zl_bg_img1,
|
|
"txt" : tipsHeroAttrChange_zl_bg_img1_txt,
|
|
}} |