2023-05-08 15:56:10 +03:00

8 lines
123 B
C#

namespace _PROJECT.Scripts.Bow.Extra
{
public interface IArrowHittable
{
void Hit(Arrow arrow);
}
}