1234567891011121314151617 |
- namespace XGame.Database
- {
- public partial class drawTableRepo
- {
- /// <summary>
- /// 召唤类型
- /// 1圣兵
- /// 2铭文
- /// </summary>
- /// <param name="type"></param>
- /// <returns></returns>
- public static drawTable GetDrawInfoByType(int type)
- {
- return Get(type * 1000 + 1);
- }
- }
- }
|