mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-23 00:28:23 -05:00
18 lines
516 B
C#
18 lines
516 B
C#
using System;
|
|
using UnityEngine;
|
|
|
|
namespace UnityAtoms.BaseAtoms
|
|
{
|
|
/// <summary>
|
|
/// Event Reference of type `Vector3`. Inherits from `AtomEventReference<Vector3, Vector3Variable, Vector3Event, Vector3VariableInstancer, Vector3EventInstancer>`.
|
|
/// </summary>
|
|
[Serializable]
|
|
public sealed class Vector3EventReference : AtomEventReference<
|
|
Vector3,
|
|
Vector3Variable,
|
|
Vector3Event,
|
|
Vector3VariableInstancer,
|
|
Vector3EventInstancer>, IGetEvent
|
|
{ }
|
|
}
|