### BREAKING CHANGE ### The constructor for `TextDefinition` has been removed. Instead use `TextDefinition.Of()` or cast the integer/string to TextDefinition.
18 lines
392 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
}
|