lcy
2025-11-05 690b5d23f1a302543744d6e4c0a7b7c2cfd8f20e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System.Collections.Generic;
using UnityEngine;
 
public class BattleDrops
{
    //  掉落位置
    public RectTransform rectTransform;
 
    //  平均分配好后的掉落物品背包索引列表
    public List<int> dropItemPackIndex = new List<int>();
 
    //  平均分配好后的经验掉落
    public List<HB405_tagMCAddExp> expDrops = new List<HB405_tagMCAddExp>();
}