Even More Modifiers  1.0.0.0
A mod for rolling various bonus stats on items
ILoadableContent.cs
Go to the documentation of this file.
1 using Terraria.ModLoader;
2 
3 namespace Loot.Api.Content
4 {
11  public interface ILoadableContent
12  {
13  Mod Mod { get; }
14  uint Type { get; }
15  string Name { get; }
16  }
17 }
Defines a piece of loadable content The interface is used in classes where the deriving class already...