hch
5 天以前 eb27e5fd31f73b998a4bbd85511a31e40b8c61b7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// 这个接口定义了所有相关Config类需要提供的公共属性
public interface IPhantasmPavilionConfigProperties
{
    string Name { get; }
    int ExpireMinutes { get; }
    int UnlockWay { get; }
    int UnlockValue { get; }
    int UnlockNeedCnt { get; }
    int UpNeedCnt { get; }
    int StarMax { get; }
    int[] AttrIDList { get; }
    int[] InitAttrValueList { get; }
    int[] AttrPerStarAddList { get; }
    int ResourceType { get; }
    string ResourceValue { get; }
    string GetWayString { get; }
}