Files
Net.Project.B/Src/Bullet/BulletService.cs
CortexCore 5fceb6f885 1
2025-03-24 14:42:29 +08:00

12 lines
218 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; }
}
}