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

14 lines
319 B
C#

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