mirror of
https://gitee.com/jisol/jisol-game/
synced 2025-06-27 20:04:35 +00:00
11 lines
240 B
TypeScript
11 lines
240 B
TypeScript
|
import { _decorator, Component, Node } from 'cc';
|
||
|
import { JNGLayerBase } from '../../../components/JNComponent';
|
||
|
const { ccclass, property } = _decorator;
|
||
|
|
||
|
@ccclass('MainOnHookView')
|
||
|
export class MainOnHookView extends JNGLayerBase {
|
||
|
|
||
|
}
|
||
|
|
||
|
|