|
import { _decorator, Component, Node, Button, Label } from 'cc';
|
|
const { ccclass, property } = _decorator;
|
|
|
|
@ccclass('Layout_SearchingRival')
|
|
export class Layout_SearchingRival extends Component {
|
|
@property(Label) lblTime;
|
|
|
|
@property(Button) btnCancel:Button;
|
|
}
|
|
|