9 lines
207 B
C#
9 lines
207 B
C#
using UnityEngine;
|
|
|
|
namespace HurricaneVR.Framework.Components
|
|
{
|
|
public interface IGunHitHandler
|
|
{
|
|
void HandleHit(HVRDamageProvider damageProvider, RaycastHit hit, Vector3 direction);
|
|
}
|
|
} |