16 lines
346 B
C#
16 lines
346 B
C#
using AibisDream.Kit;
|
|
|
|
namespace AibisDream
|
|
{
|
|
public class OutsideCenter : Singleton<OutsideCenter>
|
|
{
|
|
public BubbleSlotGroup bubbleSlotGroup;
|
|
|
|
public override void OnSingletonInit()
|
|
{
|
|
// 加载气泡
|
|
DialogUIManager.Instance.LoadBubbles(bubbleSlotGroup.CollectData());
|
|
}
|
|
}
|
|
}
|