10 lines
138 B
C#
10 lines
138 B
C#
|
using UnityEngine;
|
|||
|
|
|||
|
namespace NeoFPS
|
|||
|
{
|
|||
|
public interface IMeleeHitExtension
|
|||
|
{
|
|||
|
void OnMeleeHit(RaycastHit hit);
|
|||
|
}
|
|||
|
}
|