hch
5 天以前 eb27e5fd31f73b998a4bbd85511a31e40b8c61b7
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);
}