lucid-super-dream/Assets/Scripts/Vector3Event.cs
2021-01-05 17:13:29 +00:00

11 lines
172 B
C#

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