forked from isxGames/ISXEVEWrapper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
EntityWormhole.cs
66 lines (57 loc) · 1.43 KB
/
EntityWormhole.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
using EVE.ISXEVE.Extensions;
using LavishScriptAPI;
namespace EVE.ISXEVE
{
public class EntityWormhole : Entity
{
public EntityWormhole(LavishScriptObject copy) : base(copy)
{
}
private int? _age;
/// <summary>
/// ISXEVE-20131219.0007 - December 24, 2013:
/// Returns -10 on error.
/// </summary>
public int Age
{
get
{
if (_age == null)
_age = this.GetInt("Age");
return _age.Value;
}
}
private float? _size;
/// <summary>
/// ISXEVE-20131219.0007 - December 24, 2013:
/// Returns -10.0 on error.
/// </summary>
public float Size
{
get
{
if (_size == null)
_size = this.GetFloat("Float");
return _size.Value;
}
}
private int? _class;
/// <summary>
/// ISXEVE-20131219.0007 - December 24, 2013:
/// Returns -10 on error.
/// </summary>
public int Class
{
get
{
if (_class == null)
_class = this.GetInt("Class");
return _class.Value;
}
}
public bool EnterWormhole()
{
return ExecuteMethod("EnterWormhole");
}
}
}