Even More Modifiers
1.0.0.0
A mod for rolling various bonus stats on items
Main Page
Related Pages
Packages
Classes
Files
File List
File Members
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
26
public
GraphicsPropertiesBuilder
SkipDrawing
(
bool
value)
27
{
28
Property.
SkipDrawing
= value;
29
return
this
;
30
}
31
}
32
}
33
}
Loot
Loot.Api
Loot.Api.Graphics.GraphicsProperties.GraphicsPropertiesBuilder
Definition:
GraphicsProperties.cs:15
Loot.Api.Builder
Definition:
IPropertyBuilder.cs:1
Loot.Api.Graphics.GraphicsProperties.GraphicsPropertiesBuilder.SkipDrawing
GraphicsPropertiesBuilder SkipDrawing(bool value)
Definition:
GraphicsProperties.cs:26
Loot.Api.Graphics.GraphicsProperties
Defines a set of properties for a GraphicsEntity<T>
Definition:
GraphicsProperties.cs:8
Loot.Api.Graphics.GraphicsProperties.SkipUpdatingDrawData
bool SkipUpdatingDrawData
Definition:
GraphicsProperties.cs:12
Loot.Api.Builder.PropertyBuilder
Defines an abstract implementation of IPropertyBuilder<T>
Definition:
PropertyBuilder.cs:6
Api
Graphics
GraphicsProperties.cs
Generated on Sat Apr 18 2020 16:45:40 for Even More Modifiers by
1.8.11