Client LuaCsForBarotrauma
LowerLString.cs
1 #nullable enable
2 namespace Barotrauma
3 {
5  {
6  private readonly LocalizedString nestedStr;
7 
8  public LowerLString(LocalizedString nestedStr)
9  {
10  this.nestedStr = nestedStr;
11  }
12 
13  public override bool Loaded => nestedStr.Loaded;
14  public override void RetrieveValue()
15  {
16  cachedValue = nestedStr.Value.ToLowerInvariant();
18  }
19  }
20 }
LowerLString(LocalizedString nestedStr)
Definition: LowerLString.cs:8
override bool Loaded
Definition: LowerLString.cs:13
override void RetrieveValue()
Definition: LowerLString.cs:14