8 lines
134 B
C#
8 lines
134 B
C#
|
using UnityEngine;
|
||
|
using UnityEngine.Events;
|
||
|
|
||
|
namespace Weapons.Scripts
|
||
|
{
|
||
|
public class Vector3Event : UnityEvent<Vector3>
|
||
|
{}
|
||
|
}
|