-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDegree.cs
43 lines (37 loc) · 825 Bytes
/
Degree.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
using System;
namespace Hacknet
{
// Token: 0x0200014A RID: 330
public class Degree
{
// Token: 0x0600082C RID: 2092 RVA: 0x00089AC5 File Offset: 0x00087CC5
public Degree()
{
}
// Token: 0x0600082D RID: 2093 RVA: 0x00089AD0 File Offset: 0x00087CD0
public Degree(string degreeName, string uniName, float degreeGPA)
{
this.name = degreeName;
this.uni = uniName;
this.GPA = degreeGPA;
}
// Token: 0x0600082E RID: 2094 RVA: 0x00089AF0 File Offset: 0x00087CF0
public override string ToString()
{
return string.Concat(new object[]
{
this.name,
" from ",
this.uni,
". GPA: ",
this.GPA
});
}
// Token: 0x040009B1 RID: 2481
public string name;
// Token: 0x040009B2 RID: 2482
public string uni;
// Token: 0x040009B3 RID: 2483
public float GPA;
}
}