This commit is contained in:
CortexCore
2025-03-24 14:42:29 +08:00
parent ff7afe4133
commit 5fceb6f885
16 changed files with 153 additions and 16 deletions

View File

@@ -1,7 +1,11 @@
using System;
namespace BITFALL.Bullet
{
public interface IBulletService
{
int LayerMask { get; set; }
void Spawn(BulletData bulletData);
Func<int,int,bool> OnHit { get; set; }
}
}