10 lines
143 B
C#
10 lines
143 B
C#
|
using UnityEngine;
|
|||
|
|
|||
|
namespace NeoFPS
|
|||
|
{
|
|||
|
public interface IImpactHandler
|
|||
|
{
|
|||
|
void HandlePointImpact (Vector3 position, Vector3 force);
|
|||
|
}
|
|||
|
}
|