super-hero/assets/cc-game/scripts/game_play/map/Wall.ts

10 lines
194 B
TypeScript
Raw Normal View History

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