Layout_Invite.ts 215 B

12345678910
  1. import { _decorator, Button, Component, Node } from 'cc';
  2. const { ccclass, property } = _decorator;
  3. @ccclass('Layout_Invite')
  4. export class Layout_Invite extends Component {
  5. @property(Button)
  6. Close_Btn;
  7. }