using UnityEngine; namespace TapTap.UI { [System.Serializable] public struct BasePanelConfig { /// /// animation effect related to opening and closing /// public EAnimationMode animationType; public BasePanelConfig(EAnimationMode animationMode = EAnimationMode.None) { animationType = animationMode; } } }