hch
2 天以前 89fa96e505af9fe7baf676591222bfdb23b48262
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; }
}