Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
ShoppingSettings.cs
Go to the documentation of this file.
1namespace Terraria;
2
3public struct ShoppingSettings
4{
5 public double PriceAdjustment;
6
7 public string HappinessReport;
8
10 {
11 get
12 {
13 ShoppingSettings result = default(ShoppingSettings);
14 result.PriceAdjustment = 1.0;
15 result.HappinessReport = "";
16 return result;
17 }
18 }
19}
static ShoppingSettings NotInShop