upgrade to unity 6.1

This commit is contained in:
2025-07-17 15:57:56 +02:00
parent 702b766981
commit eea0e3ffad
1167 changed files with 62538 additions and 8659 deletions

View File

@@ -0,0 +1,9 @@
using UnityEngine;
namespace HurricaneVR.Framework.Components
{
public interface IGunHitHandler
{
void HandleHit(HVRDamageProvider damageProvider, RaycastHit hit, Vector3 direction);
}
}