ModernUO/Projects/UOContent/Items/Wands/WandTarget.cs
2023-08-25 20:44:37 -07:00

15 lines
No EOL
340 B
C#

using Server.Items;
namespace Server.Targeting;
public class WandTarget : Target
{
private readonly BaseWand m_Item;
public WandTarget(BaseWand item) : base(6, false, TargetFlags.None) => m_Item = item;
protected override void OnTarget(Mobile from, object targeted)
{
m_Item.DoWandTarget(from, targeted);
}
}