Esempio n. 1
0
 public Entry(string _id, string _category, informationType _type, params string[] _values)
 {
     id       = _id;
     category = _category;
     type     = _type;
     values   = _values;
     entry    = entryType.Localization;
 }
Esempio n. 2
0
 public void AddLocalizedLine(Localization.Line line, informationType type = informationType.Neutral)
 {
     locs.Add(new Entry(line.id, line.category, type, line.values));
 }