forked from isxGames/ISXEVEWrapper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Interstellar.cs
42 lines (39 loc) · 912 Bytes
/
Interstellar.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
using System;
using EVE.ISXEVE.Extensions;
using InnerSpaceAPI;
using LavishScriptAPI;
namespace EVE.ISXEVE
{
/// <summary>
/// This Data Type includes all of the data and actions available to ISXEVE about Systems, Constellations, and Regions.
/// </summary>
public class Interstellar : LavishScriptObject
{
#region Constructors
/// <summary>
/// Interstellar object copy constructor.
/// </summary>
/// <param name="Copy"></param>
public Interstellar(LavishScriptObject Copy)
: base(Copy)
{
}
#endregion
#region Members
/// <summary>
/// Wrapper for ID member of interstellar type.
/// </summary>
public int ID
{
get { return this.GetInt("ID"); }
}
/// <summary>
/// Wrapper for Name member of interstellar type.
/// </summary>
public string Name
{
get { return this.GetString("Name"); }
}
#endregion
}
}