server-master/srcs/WingsAPI.Game/Algorithm/IDamageAlgorithm.cs
2026-02-10 18:21:30 +01:00

9 lines
No EOL
255 B
C#

using WingsEmu.Game.Battle;
using WingsEmu.Game.Helpers.Damages;
namespace WingsEmu.Game.Algorithm;
public interface IDamageAlgorithm
{
DamageAlgorithmResult GenerateDamage(IBattleEntityDump attacker, IBattleEntityDump target, SkillInfo skill);
}