unity-atoms/Source/Events/ColorEvent.cs
2019-05-29 18:52:27 +02:00

8 lines
189 B
C#

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