UEBattleView.ts 414 B

12345678910111213141516171819
  1. import UEBase from "../../frameWork/compment/UEBase";
  2. const { ccclass, property } = cc._decorator;
  3. @ccclass
  4. export default class UEBattleView extends UEBase {
  5. static readonly BundleKey: string = "battle";
  6. static readonly PrefabUrl: string = "UEBattleView";
  7. static readonly CLS: string = "UEBattleView";
  8. Init() {
  9. this.initEvent();
  10. }
  11. initEvent(): void {
  12. }
  13. }