10 lines
158 B
C#
10 lines
158 B
C#
|
using System;
|
||
|
using UnityEngine.Events;
|
||
|
|
||
|
namespace RoR2.Projectile;
|
||
|
|
||
|
[Serializable]
|
||
|
public class ProjectileImpactEvent : UnityEvent<ProjectileImpactInfo>
|
||
|
{
|
||
|
}
|