7 lines
134 B
C#
7 lines
134 B
C#
|
namespace RoR2.Projectile;
|
||
|
|
||
|
public interface IProjectileImpactBehavior
|
||
|
{
|
||
|
void OnProjectileImpact(ProjectileImpactInfo impactInfo);
|
||
|
}
|