ModernUO/Projects/UOContent/Items/Special/Rares/Stables/DecoHay.cs
2023-03-11 19:25:48 -08:00

14 lines
249 B
C#

using ModernUO.Serialization;
namespace Server.Items;
[SerializationGenerator(0, false)]
public partial class DecoHay : Item
{
[Constructible]
public DecoHay() : base(0xF35)
{
Movable = true;
Stackable = false;
}
}