| | |
| | | using System; |
| | | using UnityEngine; |
| | | |
| | | [XLua.LuaCallCSharp] |
| | | |
| | | public partial class FairyLeagueRankAwardConfig |
| | | { |
| | | |
| | | public readonly int ID;
|
| | | public readonly int WorldLV;
|
| | | public readonly int Rank;
|
| | | public readonly int ID; |
| | | public readonly int WorldLV; |
| | | public readonly int Rank; |
| | | public readonly string RankAuctionItem; |
| | | |
| | | public FairyLeagueRankAwardConfig() |
| | |
| | | { |
| | | var tables = input.Split('\t'); |
| | | |
| | | int.TryParse(tables[0],out ID); |
| | |
|
| | | int.TryParse(tables[1],out WorldLV); |
| | |
|
| | | int.TryParse(tables[2],out Rank); |
| | |
|
| | | int.TryParse(tables[0],out ID); |
| | | |
| | | int.TryParse(tables[1],out WorldLV); |
| | | |
| | | int.TryParse(tables[2],out Rank); |
| | | |
| | | RankAuctionItem = tables[3]; |
| | | } |
| | | catch (Exception ex) |