Even More Modifiers  1.0.0.0
A mod for rolling various bonus stats on items
IPropertyBuilder.cs
Go to the documentation of this file.
1 namespace Loot.Api.Builder
2 {
7  public interface IPropertyBuilder<T> where T : class
8  {
9  void WithDefault(IPropertyBuilder<T> defaultBuilder);
10  void WithDefault(T defaultValue);
11  T Build();
12  }
13 }
Defines the interface for a PropertyBuilder of generic T