Elin Decompiled Documentation EA 23.102 Nightly
Loading...
Searching...
No Matches
LangGeneral.cs
Go to the documentation of this file.
1using System;
2
3public class LangGeneral : SourceLang<LangGeneral.Row>
4{
5 [Serializable]
6 public class Row : LangRow
7 {
8 public string filter;
9
10 public override bool UseAlias => false;
11
12 public override string GetAlias => "n";
13 }
14
15 public override Row CreateRow()
16 {
17 return new Row
18 {
19 id = SourceData.GetString(0),
20 filter = SourceData.GetString(1),
21 text_JP = SourceData.GetString(2),
22 text = SourceData.GetString(3)
23 };
24 }
25
26 public override void SetRow(Row r)
27 {
28 map[r.id] = r;
29 }
30}
override bool UseAlias
Definition: LangGeneral.cs:10
override string GetAlias
Definition: LangGeneral.cs:12
override Row CreateRow()
Definition: LangGeneral.cs:15
override void SetRow(Row r)
Definition: LangGeneral.cs:26
string id
Definition: LangRow.cs:5
static string GetString(int id)
Definition: SourceData.cs:746