unity-atoms/Source/Events/ColorEvent.cs

8 lines
189 B
C#
Raw Normal View History

using UnityEngine;
namespace UnityAtoms
{
[CreateAssetMenu(menuName = "Unity Atoms/Events/Color", fileName = "ColorEvent")]
public sealed class ColorEvent : GameEvent<Color> { }
}