super-hero/assets/cc-game/scripts/game_play/bullet/Shooting.ts

12 lines
220 B
TypeScript
Raw Normal View History

2024-04-19 03:49:41 -07:00
import { _decorator, Component, Node } from 'cc';
import { ShootingBase } from './ShootingBase';
const { ccclass, property } = _decorator;
@ccclass('Shooting')
export class Shooting extends ShootingBase {
}