18 lines
412 B
C#
18 lines
412 B
C#
using UnityEngine;
|
|
|
|
namespace TapTap.UI
|
|
{
|
|
[System.Serializable]
|
|
public struct BasePanelConfig
|
|
{
|
|
/// <summary>
|
|
/// animation effect related to opening and closing
|
|
/// </summary>
|
|
public EAnimationMode animationType;
|
|
|
|
public BasePanelConfig(EAnimationMode animationMode = EAnimationMode.None)
|
|
{
|
|
animationType = animationMode;
|
|
}
|
|
}
|
|
} |