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

29 lines
No EOL
457 B
C#

// WingsEmu
//
// Developed by NosWings Team
using WingsEmu.Packets.Enums;
namespace WingsEmu.Game.Battle;
public class MTListHitTarget
{
#region Instantiation
public MTListHitTarget(VisualType entityType, long targetId)
{
EntityType = entityType;
TargetId = targetId;
}
#endregion
#region Properties
public VisualType EntityType { get; set; }
public long TargetId { get; set; }
#endregion
}