Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
SearchAliasInfoElement.cs
Go to the documentation of this file.
1using Terraria.UI;
2
4
6{
7 private readonly string _alias;
8
9 public SearchAliasInfoElement(string alias)
10 {
11 _alias = alias;
12 }
13
15 {
16 if (info.UnlockState == BestiaryEntryUnlockState.NotKnownAtAll_0)
17 {
18 return null;
19 }
20 return _alias;
21 }
22
24 {
25 return null;
26 }
27}
string GetSearchString(ref BestiaryUICollectionInfo info)
UIElement ProvideUIElement(BestiaryUICollectionInfo info)