blob: f8d89ce17fde479e473bca2fb692e2c6642488e8 (
plain)
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
|
using System;
using System.Collections.Generic;
namespace XMainClient
{
internal struct XEnhanceInfo
{
public uint EnhanceLevel;
public uint EnhanceTimes;
public List<XItemChangeAttr> EnhanceAttr;
public void Init()
{
bool flag = this.EnhanceAttr == null;
if (flag)
{
this.EnhanceAttr = new List<XItemChangeAttr>();
}
else
{
this.EnhanceAttr.Clear();
}
this.EnhanceLevel = 0u;
this.EnhanceTimes = 0u;
}
}
}
|