lcy
8 天以前 8445b9ee122ed1fbb4ad31f7e9da35406f7dc182
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; }
}