mirror of
https://gitee.com/jisol/jisol-game/
synced 2025-06-26 11:24:46 +00:00
21 lines
399 B
TypeScript
21 lines
399 B
TypeScript
|
import { _decorator, Component, Node } from 'cc';
|
||
|
import JNLayerBase from '../../../../extensions/ngame/assets/ngame/ui/base/JNLayerBase';
|
||
|
const { ccclass, property } = _decorator;
|
||
|
|
||
|
//背包页面
|
||
|
@ccclass('PacksackView')
|
||
|
export class PacksackView extends JNLayerBase {
|
||
|
|
||
|
onJNLoad(data?: any): void {
|
||
|
super.onJNLoad(data)
|
||
|
}
|
||
|
|
||
|
//更新页面
|
||
|
onUpdateView(){
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
|