Files
DeltaVR/Assets/_PROJECT/Components/Bow/Scripts/IArrowHittable.cs
2023-05-08 15:56:10 +03:00

5 lines
66 B
C#

public interface IArrowHittable
{
void Hit(Arrow arrow);
}