hch
2026-03-31 862aeae51fdc2c8abd8753ac8d72c2ef2f07c03e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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);
    int GetSortIndex(int id);
}