hch
10 天以前 6cb439c3b2462c9f9099bf341f92e88a2d5bb6b8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
using System;
using System.Collections.Generic;
using UnityEngine;
using Cysharp.Threading.Tasks;
 
/// <summary>
/// 角色技能管理器,处理所有与技能相关的功能
/// </summary>
public class HeroSkillMgr
{
    public HeroInfo heroInfo;
 
    public HeroSkillMgr(HeroInfo _heroInfo)
    {
        this.heroInfo = _heroInfo;
 
        Init();
    }
 
    public void Init()
    {
 
    }
}