drawTableRepo.cs 403 B

1234567891011121314151617
  1. namespace XGame.Database
  2. {
  3. public partial class drawTableRepo
  4. {
  5. /// <summary>
  6. /// 召唤类型
  7. /// 1圣兵
  8. /// 2铭文
  9. /// </summary>
  10. /// <param name="type"></param>
  11. /// <returns></returns>
  12. public static drawTable GetDrawInfoByType(int type)
  13. {
  14. return Get(type * 1000 + 1);
  15. }
  16. }
  17. }