1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
| //--------------------------------------------------------
| // [Author]: 第二世界
| // [ Date ]: Tuesday, February 12, 2019
| //--------------------------------------------------------
|
| using UnityEngine;
| using System;
|
| namespace TableConfig {
|
|
| public partial class LanguageConfig : ConfigBase {
|
| public string id;
| public string content;
|
| public override string getKey()
| {
| return id.ToString();
| }
|
| public override void Parse(string content) {
| try
| {
| var contents = content.Split('\t');
|
| id = contents[0];
|
| content = contents[1];
| }
| catch (Exception ex)
| {
| DebugEx.Log(ex);
| }
| }
|
| }
|
| }
|
|
|
|
|
|