| | |
| | | //--------------------------------------------------------
|
| | | // [Author]: YYL
|
| | | // [ Date ]: 2025年8月10日
|
| | | // [ Date ]: 2025年11月4日
|
| | | //--------------------------------------------------------
|
| | |
|
| | | using System.Collections.Generic;
|
| | |
| | | }
|
| | |
|
| | | public int ID;
|
| | | public string name;
|
| | | public string Name;
|
| | | public string Text;
|
| | | public int WinJumpID;
|
| | | public int FuncID;
|
| | | public int Type;
|
| | | public string CustomValue;
|
| | |
|
| | | public override int LoadKey(string _key)
|
| | | {
|
| | |
| | | string[] tables = input.Split('\t');
|
| | | int.TryParse(tables[0],out ID);
|
| | |
|
| | | name = tables[1];
|
| | | Name = tables[1];
|
| | |
|
| | | Text = tables[2];
|
| | |
|
| | | int.TryParse(tables[3],out WinJumpID);
|
| | |
|
| | | int.TryParse(tables[4],out FuncID); |
| | |
|
| | | int.TryParse(tables[5],out Type); |
| | |
|
| | | CustomValue = tables[6];
|
| | | }
|
| | | catch (Exception exception)
|
| | | {
|