hch
2 天以前 89fa96e505af9fe7baf676591222bfdb23b48262
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using System.Collections.Generic;
 
public interface IPhantasmPavilionHandler
{
    bool HasTableKey(int id);
    List<int> GetKeyList();
    int GetResourceType(int id);
    string GetResourceValue(int id);
    string GetName(int id);
    int GetExpireMinutes(int id);
    int GetUnlockWay(int id);
    int GetUnlockValue(int id);
    int GetUnlockNeedCnt(int id);
    int GetUpNeedCnt(int id);
    int GetStarMax(int id);
    int[] GetAttrIDList(int id);
    int[] GetInitAttrValueList(int id);
    int[] GetAttrPerStarAddList(int id);
    string GetGetWayString(int id);
}