11 lines
271 B
TypeScript
11 lines
271 B
TypeScript
|
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;
|
||
|
}
|
||
|
|