You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
333 B
22 lines
333 B
|
1 week ago
|
import { _decorator, Component, v3} from 'cc';
|
||
|
|
const { ccclass, property } = _decorator;
|
||
|
|
|
||
|
|
|
||
|
|
@ccclass('TreasureSkillManager')
|
||
|
|
export class TreasureSkillManager extends Component {
|
||
|
|
protected onDisable(): void {
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
protected onLoad(): void {
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
protected onEnable(): void {
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
|