This commit is contained in:
CortexCore
2025-08-03 02:28:22 +08:00
parent 87007c9c24
commit 519c93d651
26 changed files with 427 additions and 5 deletions

View File

@@ -1,6 +1,7 @@
using System;
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics.Eventing.Reader;
using Net.Project.B.Damage;
using Unity.Mathematics;
@@ -33,6 +34,7 @@ namespace Net.Project.B.Melee
public interface IMeleeService
{
public void Add(IMeleeData meleeData);
public event Action<IMeleeData,object> OnMeleeHit;
}
}