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

13 lines
No EOL
223 B
C#

namespace WingsEmu.Game.Battle;
public class ComboState
{
public ComboState(long targetId)
{
Hit = 0;
TargetId = targetId;
}
public int Hit { get; set; }
public long TargetId { get; }
}