mirror of
https://gitee.com/jisol/jisol-game/
synced 2025-06-26 03:14:47 +00:00
10 lines
227 B
TypeScript
10 lines
227 B
TypeScript
import { _decorator, Component, Node } from 'cc';
|
|
import { JNGLayerBase } from '../../App';
|
|
const { ccclass, property } = _decorator;
|
|
|
|
@ccclass('NoviceSelectPetView')
|
|
export class NoviceSelectPetView extends JNGLayerBase {
|
|
}
|
|
|
|
|