Even More Modifiers  1.0.0.0
A mod for rolling various bonus stats on items
TempItem.cs
Go to the documentation of this file.
1 using Terraria.ModLoader;
2 
3 namespace Loot.Essences
4 {
5  abstract class TempItem : ModItem
6  {
7  public override string Texture => "Loot/Placeholder";
8 
9  public override void SetStaticDefaults()
10  {
11  DisplayName.SetDefault(GetType().Namespace + "." + Name);
12  }
13  }
14 }
override void SetStaticDefaults()
Definition: TempItem.cs:9