Layout_UIAlert.ts 308 B

12345678910111213
  1. import { _decorator, Button, Component, Label, Node } from 'cc';
  2. const { ccclass, property } = _decorator;
  3. @ccclass('Layout_UIAlert')
  4. export class Layout_UIAlert extends Component {
  5. @property(Label)
  6. title:Label;
  7. @property(Button)
  8. btnOK:Button;
  9. @property(Button)
  10. btnCancel:Button;
  11. }