32 lines
733 B
TypeScript
32 lines
733 B
TypeScript
import { Node } from 'cc';
|
|
interface hero_tip extends Node{
|
|
nodesType:{
|
|
"tips_sqjb" : hero_tip_tips_sqjb,
|
|
"Label" : hero_tip_tips_sqjb_Label,
|
|
"tips_dcjb" : hero_tip_tips_dcjb,
|
|
|
|
}
|
|
}
|
|
interface hero_tip_tips_sqjb extends Node{
|
|
nodesType:{
|
|
"Label" : hero_tip_tips_sqjb_Label,
|
|
|
|
}
|
|
}
|
|
interface hero_tip_tips_sqjb_Label extends Node{
|
|
}
|
|
interface hero_tip_tips_dcjb extends Node{
|
|
nodesType:{
|
|
"Label" : hero_tip_tips_dcjb_Label,
|
|
|
|
}
|
|
}
|
|
interface hero_tip_tips_dcjb_Label extends Node{
|
|
}
|
|
declare global {
|
|
type tree_hero_tip = {
|
|
"hero_tip" : hero_tip,
|
|
"tips_sqjb" : hero_tip_tips_sqjb,
|
|
"Label" : hero_tip_tips_sqjb_Label,
|
|
"tips_dcjb" : hero_tip_tips_dcjb,
|
|
}} |