super-hero/assets/cc-game/scripts/game_play/creep/Creep.ts

14 lines
329 B
TypeScript

import { _decorator, Component, Node } from 'cc';
import { LayoutManager } from '../LayoutManager';
import { CreepBase } from './CreepBase';
const { ccclass, property } = _decorator;
@ccclass('Creep')
export class Creep extends CreepBase {
// loadDataAndDisplay() {
// this.hpBar.setMaxHPBar(1000);
// }
}