14 lines
288 B
C#
14 lines
288 B
C#
using AibisDream.Framework;
|
|
using AibisDream.Kit;
|
|
|
|
namespace AibisDream
|
|
{
|
|
public class OutsideCenter : Singleton<OutsideCenter>
|
|
{
|
|
public override void OnSingletonInit()
|
|
{
|
|
BubbleSlotKit.Instance.LoadBubbles(BubbleSlotEnum.Outside);
|
|
}
|
|
}
|
|
}
|