- [X] Deletes serialization annotations - [X] Updates to ModernUO.Serialization.Annotations nuget - [X] Updates serializer to v2.0 - [X] Changes all `Serializable()` to `SerializationGenerator()` - [X] Updates to schema generator v2.0
13 lines
233 B
C#
13 lines
233 B
C#
using ModernUO.Serialization;
|
|
|
|
namespace Server.Items
|
|
{
|
|
[SerializationGenerator(0, false)]
|
|
public partial class LeftLeg : Item
|
|
{
|
|
[Constructible]
|
|
public LeftLeg() : base(0x1DA3)
|
|
{
|
|
}
|
|
}
|
|
}
|