AI_MMI_Analyser/c_Sharp_Code/stationinfo.cs

84 lines
1.6 KiB
C#

using System;
namespace SL200_RTLogViewer
{
// Token: 0x02000007 RID: 7
public class StationInfo
{
// Token: 0x17000001 RID: 1
// (get) Token: 0x06000022 RID: 34 RVA: 0x00004548 File Offset: 0x00002748
public double Pos
{
get
{
return this.pos;
}
}
// Token: 0x17000002 RID: 2
// (get) Token: 0x06000023 RID: 35 RVA: 0x00004560 File Offset: 0x00002760
public int AtcCode
{
get
{
return this.atcCode;
}
}
// Token: 0x17000003 RID: 3
// (get) Token: 0x06000024 RID: 36 RVA: 0x00004578 File Offset: 0x00002778
public string StationName
{
get
{
return this.stationName;
}
}
// Token: 0x17000004 RID: 4
// (get) Token: 0x06000025 RID: 37 RVA: 0x00004590 File Offset: 0x00002790
public int StationCode
{
get
{
return this.stationCode;
}
}
// Token: 0x17000005 RID: 5
// (get) Token: 0x06000026 RID: 38 RVA: 0x000045A8 File Offset: 0x000027A8
public DoorDirection NextDoorDir
{
get
{
return this.nextDoorDir;
}
}
// Token: 0x06000027 RID: 39 RVA: 0x000045C0 File Offset: 0x000027C0
public StationInfo(double xPos, int atc, string name, DoorDirection nextDoordir, int stationNo)
{
this.pos = xPos;
this.atcCode = atc;
this.stationName = name;
this.nextDoorDir = nextDoordir;
this.stationCode = stationNo;
}
// Token: 0x04000020 RID: 32
private double pos;
// Token: 0x04000021 RID: 33
private int atcCode;
// Token: 0x04000022 RID: 34
private string stationName;
// Token: 0x04000023 RID: 35
private int stationCode;
// Token: 0x04000024 RID: 36
private DoorDirection nextDoorDir;
}
}