11 lines
172 B
C#
11 lines
172 B
C#
using System;
|
|
using UnityEngine;
|
|
using UnityEngine.Events;
|
|
|
|
namespace Weapons.Scripts
|
|
{
|
|
|
|
[Serializable]
|
|
public class Vector3Event : UnityEvent<Vector3>
|
|
{}
|
|
} |