ModernUO/Projects/UOContent/Holiday Stuff/Halloween/Treats/Jellybeans.cs
Kamron Batman f2d44e0283
fix(codegen): Reverts & Disables codegen (for now) (#625)
After speaking with the C# devs, it is clear that code gen is not ready.
I can get around this by doing the following:
1. Creating a library
2. Splitting out the schema writing from the source generator
3. Moving the schema loading to `AdditionalFiles`
4. Writing a new post-build application using Roslyn to write the schema files after building.
2021-05-27 19:50:22 -07:00

31 lines
695 B
C#

namespace Server.Items
{
public class JellyBeans : CandyCane
{
[Constructible]
public JellyBeans(int amount = 1)
: base(0x468C) =>
Stackable = true;
public JellyBeans(Serial serial)
: base(serial)
{
}
public override int LabelNumber => 1096932; /* jellybeans */
public override void Serialize(IGenericWriter writer)
{
base.Serialize(writer);
writer.Write(0); // version
}
public override void Deserialize(IGenericReader reader)
{
base.Deserialize(reader);
var version = reader.ReadInt();
}
}
}