mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-24 17:17:47 -05:00
13 lines
330 B
C#
13 lines
330 B
C#
using System;
|
|
using UnityEngine.Events;
|
|
using UnityEngine;
|
|
|
|
namespace UnityAtoms.BaseAtoms
|
|
{
|
|
/// <summary>
|
|
/// None generic Unity Event of type `Vector3Pair`. Inherits from `UnityEvent<Vector3Pair>`.
|
|
/// </summary>
|
|
[Serializable]
|
|
public sealed class Vector3PairUnityEvent : UnityEvent<Vector3Pair> { }
|
|
}
|