123456789101112131415161718192021 |
- import { _decorator, Button, Component, Node, Toggle } from 'cc';
- import { Sign_Reward } from './Sign_Reward';
- const { ccclass, property } = _decorator;
- @ccclass('Layout_Sign')
- export class Layout_Sign extends Component {
- @property(Button)
- Return: Button = null;
- @property(Button)
- Free_Get:Button = null;
- @property([Sign_Reward])
- Sign_Reward: Sign_Reward[] = [];
- @property(Toggle)
- Toggle: Toggle = null;
- }
|