lucid-super-dream/Assets/Scripts/Vector3Event.cs

11 lines
172 B
C#

using System;
using UnityEngine;
using UnityEngine.Events;
namespace Weapons.Scripts
{
[Serializable]
public class Vector3Event : UnityEvent<Vector3>
{}
}