Elin Modding Docs Doc
Loading...
Searching...
No Matches
NoticeManager.cs
1using System;
2using System.Collections.Generic;
3
4// Token: 0x02000595 RID: 1429
5public class NoticeManager
6{
7 // Token: 0x06002739 RID: 10041 RVA: 0x000DE360 File Offset: 0x000DC560
8 public void Refresh()
9 {
10 this.list.Clear();
11 this.list.Add(new NoticeManager.Notice());
12 this.list.Add(new NoticeManager.Notice());
13 this.list.Add(new NoticeManager.Notice());
14 if (this.list.Count == 0)
15 {
16 this.list.Add(new NoticeManager.Notice());
17 }
18 }
19
20 // Token: 0x040015B4 RID: 5556
21 public List<NoticeManager.Notice> list = new List<NoticeManager.Notice>();
22
23 // Token: 0x02000AD8 RID: 2776
24 public class Notice
25 {
26 // Token: 0x170011E6 RID: 4582
27 // (get) Token: 0x06004232 RID: 16946 RVA: 0x00155760 File Offset: 0x00153960
28 public string Text
29 {
30 get
31 {
32 return "tempNotice".lang();
33 }
34 }
35 }
36}