Elin Decompiled Documentation EA 23.102 Nightly
Loading...
Searching...
No Matches
NoticeManager.cs
Go to the documentation of this file.
1using System.Collections.Generic;
2
3public class NoticeManager
4{
5 public class Notice
6 {
7 public string Text => "tempNotice".lang();
8 }
9
10 public List<Notice> list = new List<Notice>();
11
12 public void Refresh()
13 {
14 list.Clear();
15 list.Add(new Notice());
16 list.Add(new Notice());
17 list.Add(new Notice());
18 if (list.Count == 0)
19 {
20 list.Add(new Notice());
21 }
22 }
23}
List< Notice > list