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

11 lines
172 B
C#
Raw Normal View History

2021-01-05 17:13:29 +00:00
using System;
2021-01-05 12:10:20 +00:00
using UnityEngine;
using UnityEngine.Events;
namespace Weapons.Scripts
{
2021-01-05 17:13:29 +00:00
[Serializable]
2021-01-05 12:10:20 +00:00
public class Vector3Event : UnityEvent<Vector3>
{}
}