unity-atoms/Source/References/ColorReference.cs
2019-09-25 21:05:06 +02:00

12 lines
180 B
C#

using System;
using UnityEngine;
namespace UnityAtoms
{
[Serializable]
public sealed class ColorReference : AtomReference<
Color,
ColorVariable>
{ }
}