Even More Modifiers  1.0.0.0
A mod for rolling various bonus stats on items
GraphicsProperties.cs
Go to the documentation of this file.
1 using Loot.Api.Builder;
2 
3 namespace Loot.Api.Graphics
4 {
8  public class GraphicsProperties
9  {
10  public static GraphicsPropertiesBuilder Builder => new GraphicsPropertiesBuilder();
11 
12  public bool SkipUpdatingDrawData { get; set; }
13  public bool SkipDrawing { get; set; }
14 
15  public class GraphicsPropertiesBuilder : PropertyBuilder<GraphicsProperties>
16  {
17  protected override GraphicsProperties DefaultProperty
18  {
19  set
20  {
21  Property.SkipUpdatingDrawData = value.SkipUpdatingDrawData;
22  Property.SkipDrawing = value.SkipDrawing;
23  }
24  }
25 
27  {
28  Property.SkipDrawing = value;
29  return this;
30  }
31  }
32  }
33 }
Defines a set of properties for a GraphicsEntity<T>
Defines an abstract implementation of IPropertyBuilder<T>