-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathClan.cs
More file actions
38 lines (27 loc) · 694 Bytes
/
Copy pathClan.cs
File metadata and controls
38 lines (27 loc) · 694 Bytes
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
using System;
// Token: 0x0200002C RID: 44
public class Clan
{
// Token: 0x040001D6 RID: 470
public int ID;
// Token: 0x040001D7 RID: 471
public int imgID;
// Token: 0x040001D8 RID: 472
public string name = string.Empty;
// Token: 0x040001D9 RID: 473
public string slogan = string.Empty;
// Token: 0x040001DA RID: 474
public int date;
// Token: 0x040001DB RID: 475
public string powerPoint;
// Token: 0x040001DC RID: 476
public int currMember;
// Token: 0x040001DD RID: 477
public int maxMember = 50;
// Token: 0x040001DE RID: 478
public int leaderID;
// Token: 0x040001DF RID: 479
public string leaderName;
// Token: 0x040001E0 RID: 480
public int level;
}