-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathComplication.cs
35 lines (31 loc) · 1.21 KB
/
Complication.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
using LavishScriptAPI;
namespace Vanguard.ISXVG
{
/// <summary>
/// This DataType includes all of the data available to ISXVG that is related to crafting complications.
/// </summary>
public class Complication : LavishScriptObject
{
/// <summary>
/// Initializes a new instance of the <see cref="Complication"/> class.
/// </summary>
/// <param name="Obj">The obj.</param>
public Complication(LavishScriptObject Obj)
: base(Obj) {}
/// <summary>
/// Initializes a new instance of the <see cref="Complication"/> class.
/// </summary>
public Complication()
: base(LavishScript.Objects.GetObject("Complication")) {}
/// <summary>
/// Gets the name of this <see cref="Complication"/>.
/// </summary>
/// <value>The name.</value>
public string Name { get { return GetMember<string>("Name"); } }
/// <summary>
/// Gets the description of this <see cref="Complication"/>.
/// </summary>
/// <value>The description.</value>
public string Description { get { return GetMember<string>("Description"); } }
}
}