Even More Modifiers  1.0.0.0
A mod for rolling various bonus stats on items
ModifierContent.cs
Go to the documentation of this file.
1 using Loot.Api.Content;
2 using Loot.Api.Core;
3 
4 namespace Loot.Content
5 {
9  public sealed class ModifierContent : LoadableContentBase<Modifier>
10  {
11  internal override void Load()
12  {
13  AddContent(NullModifier.INSTANCE, Loot.Instance);
14  }
15  }
16 }
This class holds all loaded Modifier content
This class is used for Content holders in the Content namespace As a modder you should not use this c...
static NullModifier INSTANCE
Definition: NullModifier.cs:14
Defines a "Null" modifier which represents no modifier safely Cannot be rolled normally ...
Definition: NullModifier.cs:10