unity-atoms/Packages/Core/Runtime/References/Vector2Reference.cs
2019-10-01 17:27:22 +02:00

11 lines
182 B
C#

using System;
using UnityEngine;
namespace UnityAtoms
{
[Serializable]
public sealed class Vector2Reference : AtomReference<
Vector2,
Vector2Variable> { }
}