13 lines
279 B
C#
13 lines
279 B
C#
using System;
|
|
|
|
namespace BITFALL.Bullet
|
|
{
|
|
public interface IBulletService
|
|
{
|
|
int LayerMask { get; set; }
|
|
void Spawn(BulletData bulletData);
|
|
Func<int,int,bool> OnHit { get; set; }
|
|
public event Action<BulletData, object> OnBulletHit;
|
|
}
|
|
}
|