yyl
2025-06-13 eb1efcaa9be0e2340fc49b38dab8df18e36526c9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
using System.Collections.Generic;
using UnityEngine;
 
public partial class HeroInfo
{
    public long sid;
 
    public int heroId;
 
    public int heroLevel;
 
    public int heroStar;
 
    public int breakLevel;
 
    // public List<int> heroEquipList;
 
    // public List<int> heroRuneList;
 
    // public List<int> heroMedalList;
 
    // public HeroConfig heroConfig;
 
    public HeroSkillMgr heroSkillMgr;
 
    public HeroInfo(/*TODO 等待服务器数据*/)
    {
        heroSkillMgr = new HeroSkillMgr(this);
    }
 
 
}