ModernUO/Projects/UOContent/Items/Construction/Tables/WritingTable.cs
2021-11-21 10:45:07 -08:00

11 lines
258 B
C#

namespace Server.Items
{
[Furniture]
[Flippable(0xB4A, 0xB49, 0xB4B, 0xB4C)]
[Serializable(0, false)]
public partial class WritingTable : Item
{
[Constructible]
public WritingTable() : base(0xB4A) => Weight = 1.0;
}
}