2023-12-11 00:06:54 +08:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using Script.UI;
|
2023-12-10 12:28:20 +08:00
|
|
|
|
|
|
|
|
|
namespace Script
|
|
|
|
|
{
|
|
|
|
|
public class GlobalManager : SingleManager<GlobalManager>
|
|
|
|
|
{
|
2023-12-11 00:06:54 +08:00
|
|
|
|
private List<SummaryInfo> _list = new List<SummaryInfo>();
|
|
|
|
|
public List<SummaryInfo> list => _list;
|
2023-12-10 12:28:20 +08:00
|
|
|
|
}
|
|
|
|
|
}
|