ModernUO/Scripts/Engines/MLQuests/Rewards/DummyReward.cs
2018-09-14 08:46:14 -07:00

19 lines
369 B
C#

using Server.Mobiles;
using System.Collections.Generic;
namespace Server.Engines.MLQuests.Rewards
{
public class DummyReward : BaseReward
{
public DummyReward( TextDefinition name )
: base( name )
{
}
protected override int LabelHeight => 180;
public override void AddRewardItems( PlayerMobile pm, List<Item> rewards )
{
}
}
}