12 lines
264 B
C#
12 lines
264 B
C#
using BriarQueen.Framework.Events.System;
|
|
using UnityEngine;
|
|
|
|
namespace BriarQueen.Framework.Events.UI
|
|
{
|
|
public enum FadeStyle
|
|
{
|
|
SolidColor = 0, // Left for Compat.
|
|
}
|
|
|
|
public record FadeEvent(bool Hidden, float Duration = 0.25f) : IEvent;
|
|
} |