19 lines
No EOL
381 B
C#
19 lines
No EOL
381 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)
|
|
{
|
|
}
|
|
}
|
|
} |