ModernUO/Projects/UOContent/Items/Lights/LightSource.cs

14 lines
265 B
C#

using ModernUO.Serialization;
namespace Server.Items;
[SerializationGenerator(0, false)]
public partial class LightSource : Item
{
[Constructible]
public LightSource() : base(0x1647)
{
Layer = Layer.TwoHanded;
Movable = false;
}
}