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

19 lines
385 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 { get { return 180; } }
public override void AddRewardItems( PlayerMobile pm, List<Item> rewards )
{
}
}
}