Even More Modifiers  1.0.0.0
A mod for rolling various bonus stats on items
GlowmaskGraphicsProperties.cs
Go to the documentation of this file.
1 using Loot.Api.Builder;
2 
3 namespace Loot.Api.Graphics.Glowmask
4 {
9  {
11 
12  public bool SkipDrawingGlowmask { get; set; }
13 
14  public class GlowmaskGraphicsPropertiesBuilder : PropertyBuilder<GlowmaskGraphicsProperties>
15  {
16  protected override GlowmaskGraphicsProperties DefaultProperty
17  {
18  set
19  {
20  Property.SkipDrawing = value.SkipDrawing;
21  Property.SkipDrawingGlowmask = value.SkipDrawingGlowmask;
22  }
23  }
24 
26  {
27  Property.SkipDrawing = value;
28  return this;
29  }
30 
32  {
33  Property.SkipDrawingGlowmask = val;
34  return this;
35  }
36  }
37  }
38 }
Defines the GraphicsProperties for GlowmaskEntitys which derives from GraphicsProperties ...
Defines a set of properties for a GraphicsEntity<T>
Defines an abstract implementation of IPropertyBuilder<T>