ModernUO/Projects/UOContent/Engines/ML Quests/Rewards/DummyReward.cs
Kamron Batman 910e06767b
fix: Optimizes TextDefinition to eliminate allocations. Removes TextDefinition ctor. (#1221)
### BREAKING CHANGE ###
The constructor for `TextDefinition` has been removed. Instead use `TextDefinition.Of()` or cast the integer/string to TextDefinition.
2022-10-30 16:53:23 -07:00

18 lines
392 B
C#

using System.Collections.Generic;
using Server.Mobiles;
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)
{
}
}
}