Files
jelito/Assets/jelycho/Code/Damage/IHurtbox.cs
2025-10-24 13:54:27 +02:00

8 lines
222 B
C#

using RebootKit.Engine.Simulation;
using Unity.Mathematics;
namespace RebootReality.jelycho.Damage {
public interface IHurtbox {
void ReceiveDamage(Actor attacker, ulong damage, float3 worldHitPos);
}
}