squidGame/tgx-games-client/assets/module_arean/ui_mail/Layout_UIMail.ts

32 lines
536 B
TypeScript
Raw Normal View History

2025-02-07 10:49:34 +08:00
import { _decorator, Button, Component, Label, Node } from 'cc';
const { ccclass, property } = _decorator;
@ccclass('Layout_UIMail')
export class Layout_UIMail extends Component {
@property(Button)
btnClose:Button;
@property(Button)
btnMarkAllAsRead:Button;
@property(Button)
btnDelete:Button;
@property(Button)
btnClearAll:Button;
@property(Node)
emptyTips:Node;
@property(Node)
mailRoot:Node;
@property(Label)
lblContent:Label;
@property(Node)
waiting:Node;
}