Files
aibis-dream/Assets/Scripts/UI/DialogUI/Bubbles/BubbleSlotGroup.cs
T
2025-06-04 21:45:50 +08:00

27 lines
538 B
C#

using System;
using UnityEngine;
namespace AibisDream
{
public class BubbleSlotGroup
{
public BubbleSlotGroupData data;
}
[Serializable]
public struct BubbleSlotGroupData
{
public DialogViewType dialogViewType;
[HideInInspector] public BubbleSlotData[] bubbleSlots;
[HideInInspector] public BubbleOptionSlotData[] bubbleOptionSlots;
}
public enum PivotType {
Center,
CenterLeft,
CenterRight,
Top,
Bottom
}
}