mirror of
https://gitee.com/jisol/jisol-game/
synced 2025-06-26 19:34:47 +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 {
|
|
|
|
}
|
|
|
|
|