27 lines
538 B
C#
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
|
|
}
|
|
} |