forked from isxGames/ISXEVEWrapper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
EVETime.cs
77 lines (68 loc) · 1.45 KB
/
EVETime.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
using System;
using System.Collections.Generic;
using System.Text;
using EVE.ISXEVE.Extensions;
using InnerSpaceAPI;
using LavishScriptAPI;
namespace EVE.ISXEVE
{
/// <summary>
/// Wrapper for the evetime data type.
/// </summary>
public class EVETime : LavishScriptObject
{
#region Constructors
/// <summary>
/// EVETime copy constructor.
/// </summary>
/// <param name="Obj"></param>
public EVETime(LavishScriptObject Obj)
: base(Obj)
{
}
/// <summary>
/// EVETime constructor.
/// </summary>
public EVETime()
: base(LavishScript.Objects.GetObject("EVETime"))
{
}
#endregion
#region Members
/// <summary>
/// Wrapper for the DateAndTime member of a evetime type.
/// </summary>
public string DateAndTime
{
get { return this.GetString("DateAndTime"); }
}
/// <summary>
/// Wrapper for the Date member of a evetime type.
/// </summary>
public string Date
{
get { return this.GetString("Date"); }
}
/// <summary>
/// Wrapper for the Time member of a evetime type.
/// </summary>
public string Time
{
get { return this.GetString("Time"); }
}
/// <summary>
/// Wrapper for the AsInt64 member of a evetime type.
/// </summary>
public Int64 AsInt64
{
get
{
Tracing.SendCallback("EVETime.AsInt64");
return this.GetInt64("AsInt64");
}
}
#endregion
#region Methods
#endregion
}
}