ModernUO/Projects/UOContent/Items/Construction/Walls/WhiteStoneWall.cs
Kamron Batman 54d728a322
fix: Updates serialization to use v2.0 (#998)
- [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
2022-04-17 08:02:15 -07:00

60 lines
1.4 KiB
C#

/****************************************
* NAME : White Stone Wall *
* SCRIPT : WhiteStoneWall.cs *
* VERSION : v1.00 *
* CREATOR : Mans Sjoberg (Allmight) *
* CREATED : 10-07.2002 *
* **************************************/
using ModernUO.Serialization;
namespace Server.Items
{
public enum WhiteStoneWallTypes
{
EastWall,
SouthWall,
SECorner,
NWCornerPost,
EastArrowLoop,
SouthArrowLoop,
EastWindow,
SouthWindow,
SouthWallMedium,
EastWallMedium,
SECornerMedium,
NWCornerPostMedium,
SouthWallShort,
EastWallShort,
SECornerShort,
NWCornerPostShort,
NECornerPostShort,
SWCornerPostShort,
SouthWallVShort,
EastWallVShort,
SECornerVShort,
NWCornerPostVShort,
SECornerArch,
SouthArch,
WestArch,
EastArch,
NorthArch,
EastBattlement,
SECornerBattlement,
SouthBattlement,
NECornerBattlement,
SWCornerBattlement,
Column,
SouthWallVVShort,
EastWallVVShort
}
[SerializationGenerator(0, false)]
public partial class WhiteStoneWall : BaseWall
{
[Constructible]
public WhiteStoneWall(WhiteStoneWallTypes type) : base(0x0057 + (int)type)
{
}
}
}