using System; namespace BITFALL.Bullet { public interface IBulletService { int LayerMask { get; set; } void Spawn(BulletData bulletData); Func OnHit { get; set; } public event Action OnBulletHit; } }