ModernUO/Projects/UOContent/Items/Addons/SmallBedSouthAddon.cs
Kamron Batman 4c265562bb
fix: Codgens more addons (#685)
* Fixes after deserialization not executing for older versions of an object
* Codegens more addons
2021-08-15 17:55:04 -07:00

27 lines
723 B
C#

namespace Server.Items
{
[Serializable(0, false)]
public partial class SmallBedSouthAddon : BaseAddon
{
[Constructible]
public SmallBedSouthAddon()
{
AddComponent(new AddonComponent(0xA63), 0, 0, 0);
AddComponent(new AddonComponent(0xA5C), 0, 1, 0);
}
public override BaseAddonDeed Deed => new SmallBedSouthDeed();
}
[Serializable(0, false)]
public partial class SmallBedSouthDeed : BaseAddonDeed
{
[Constructible]
public SmallBedSouthDeed()
{
}
public override BaseAddon Addon => new SmallBedSouthAddon();
public override int LabelNumber => 1044321; // small bed (south)
}
}