| | |
| | | using System; |
| | | using UnityEngine; |
| | | |
| | | [XLua.LuaCallCSharp] |
| | | |
| | | public partial class RidingPetBossRewardConfig |
| | | { |
| | | |
| | | public readonly int id;
|
| | | public readonly int lineId;
|
| | | public readonly string worldLevel;
|
| | | public readonly string rank;
|
| | | public readonly int id; |
| | | public readonly int lineId; |
| | | public readonly string worldLevel; |
| | | public readonly string rank; |
| | | public readonly string items; |
| | | |
| | | public RidingPetBossRewardConfig() |
| | |
| | | { |
| | | var tables = input.Split('\t'); |
| | | |
| | | int.TryParse(tables[0],out id); |
| | |
|
| | | int.TryParse(tables[1],out lineId); |
| | |
|
| | | worldLevel = tables[2];
|
| | |
|
| | | rank = tables[3];
|
| | |
|
| | | int.TryParse(tables[0],out id); |
| | | |
| | | int.TryParse(tables[1],out lineId); |
| | | |
| | | worldLevel = tables[2]; |
| | | |
| | | rank = tables[3]; |
| | | |
| | | items = tables[4]; |
| | | } |
| | | catch (Exception ex) |