-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTravelJournal.cs
48 lines (43 loc) · 1.42 KB
/
TravelJournal.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
42
43
44
45
46
47
48
using LavishScriptAPI;
namespace Vanguard.ISXVG
{
/// <summary>
///
/// </summary>
public class TravelJournal : LavishScriptObject
{
/// <summary>
/// Initializes a new instance of the <see cref="TravelJournal"/> class.
/// </summary>
/// <param name="Obj">The obj.</param>
public TravelJournal(LavishScriptObject Obj)
: base(Obj) {}
/// <summary>
/// Initializes a new instance of the <see cref="TravelJournal"/> class.
/// </summary>
public TravelJournal()
: base(LavishScript.Objects.GetObject("TravelJournal")) {}
/// <summary>
/// Gets the entry count of this <see cref="TravelJournal"/>.
/// </summary>
/// <value>The entry count.</value>
public int EntryCount { get { return GetMember<int>("EntryCount"); } }
/// <summary>
/// Currentlies the tracking.
/// </summary>
/// <returns></returns>
public TravelJournalEntry CurrentlyTracking()
{
LavishScriptObject Obj = GetMember("CurrentlyTracking");
return new TravelJournalEntry(Obj);
}
/// <summary>
/// Stops the tracking.
/// </summary>
/// <returns></returns>
public bool StopTracking()
{
return ExecuteMethod("StopTracking");
}
}
}