-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTargetEffect.cs
41 lines (36 loc) · 1.37 KB
/
TargetEffect.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
36
37
38
39
40
41
using LavishScriptAPI;
namespace Vanguard.ISXVG
{
/// <summary>
///
/// </summary>
public class TargetEffect : LavishScriptObject
{
/// <summary>
/// Initializes a new instance of the <see cref="TargetEffect"/> class.
/// </summary>
/// <param name="Obj">The obj.</param>
public TargetEffect(LavishScriptObject Obj)
: base(Obj) {}
/// <summary>
/// Initializes a new instance of the <see cref="TargetEffect"/> class.
/// </summary>
public TargetEffect()
: base(LavishScript.Objects.GetObject("TargetEffect")) {}
/// <summary>
/// Gets the name of this <see cref="TargetEffect"/>.
/// </summary>
/// <value>The name.</value>
public string Name { get { return GetMember<string>("Name"); } }
/// <summary>
/// Gets the description of this <see cref="TargetEffect"/>.
/// </summary>
/// <value>The description.</value>
public string Description { get { return GetMember<string>("Description"); } }
/// <summary>
/// Gets the time remaining of this <see cref="TargetEffect"/>.
/// </summary>
/// <value>The time remaining.</value>
public string TimeRemaining { get { return GetMember<string>("TimeRemaining"); } }
}
}