10 lines
209 B
C#
10 lines
209 B
C#
using ModernUO.Serialization;
|
|
|
|
namespace Server.Items;
|
|
|
|
[SerializationGenerator(0, false)]
|
|
public partial class RedLeatherBook : BlueBook
|
|
{
|
|
[Constructible]
|
|
public RedLeatherBook() => Hue = 0x485;
|
|
}
|