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

13 lines
304 B
C#

using System;
using UnityEngine.Events;
using UnityEngine;
namespace UnityAtoms
{
/// <summary>
/// None generic Unity Event of type `Vector3`. Inherits from `UnityEvent&lt;Vector3&gt;`.
/// </summary>
[Serializable]
public sealed class Vector3UnityEvent : UnityEvent<Vector3> { }
}