1234567891011121314151617181920212223242526272829303132 |
- import { _decorator, Component, Node } from 'cc';
- import { KillAllMonsterSkill } from './KillAllMonsterSkill';
- import { SkillBase } from './SkillBase';
- const { ccclass, property } = _decorator;
- export default class SkillManager{
- constructor(){
- }
-
- /**
- * 创建技能
- * @param type
- */
- public Create(type:number):SkillBase{
- switch (type) {
- case 1:
- return new KillAllMonsterSkill();
- default:
- break;
- }
- }
- private static instance:SkillManager;
- public static get single():SkillManager{
- if(this.instance==null){
- this.instance=new SkillManager();
- }
- return this.instance;
- }
- }
|