ModernUO/Projects/UOContent/Items/PlantsFlowers/Potted/PottedTrees.cs
2022-11-23 13:04:30 -08:00

17 lines
367 B
C#

using ModernUO.Serialization;
namespace Server.Items;
[SerializationGenerator(0, false)]
public partial class PottedTree : Item
{
[Constructible]
public PottedTree() : base(0x11C8) => Weight = 100;
}
[SerializationGenerator(0, false)]
public partial class PottedTree1 : Item
{
[Constructible]
public PottedTree1() : base(0x11C9) => Weight = 100;
}