| 123456789101112131415161718192021222324252627 |
- namespace Masuit.Tools.RandomSelector
- {
- public class WeightedItem<T>
- {
- /// <summary>
- /// 权重
- /// </summary>
- public int Weight;
- /// <summary>
- /// 元素
- /// </summary>
- public readonly T Value;
- /// <summary>
- /// 累计权重
- /// </summary>
- internal int CumulativeWeight;
- public WeightedItem(T value, int weight)
- {
- Value = value;
- Weight = weight;
- CumulativeWeight = 0;
- }
- }
- }
|