unity-atoms/Packages/Core/Runtime/References/Vector2Reference.cs
2019-10-15 22:34:08 +02:00

14 lines
319 B
C#

using System;
using UnityEngine;
namespace UnityAtoms
{
/// <summary>
/// Reference of type `Vector2`. Inherits from `AtomReference&lt;Vector2, Vector2Variable&gt;`.
/// </summary>
[Serializable]
public sealed class Vector2Reference : AtomReference<
Vector2,
Vector2Variable> { }
}