ModernUO/Projects/UOContent/Items/Construction/Misc/MusicStand.cs
2023-09-29 23:28:51 -07:00

21 lines
459 B
C#

using ModernUO.Serialization;
namespace Server.Items;
[Furniture]
[Flippable(0xEBB, 0xEBC)]
[SerializationGenerator(0, false)]
public partial class TallMusicStand : Item
{
[Constructible]
public TallMusicStand() : base(0xEBB) => Weight = 10.0;
}
[Furniture]
[Flippable(0xEB6, 0xEB8)]
[SerializationGenerator(0, false)]
public partial class ShortMusicStand : Item
{
[Constructible]
public ShortMusicStand() : base(0xEB6) => Weight = 10.0;
}