示例#1
0
    public void AddNotBurstInfo(int count, int p_value)
    {
        Burst_Info burstInfo = GetBurst(count, p_value);

        burstInfo.rate = (burstInfo.total * burstInfo.rate) / (burstInfo.total + 1f);
        ++(burstInfo.total);
        ++totalCount;
    }
示例#2
0
 public void SetBurst(int count, int card, Burst_Info value)
 {
     bursts[count + MAX_CCN, card - 12] = value;
     totalCount += value.total;
 }