* Adds code genning for embedded objects. See `AquariumState` as an example. * Adds code genning for fields that are `Timer`. See `Aquarium` as an example. * Codegens aquariums * Fixes missing option for most primitive field types.
13 lines
297 B
C#
13 lines
297 B
C#
namespace Server.Items
|
|
{
|
|
[Serializable(0, false)]
|
|
public partial class YellowFinBluebelly : BaseFish
|
|
{
|
|
[Constructible]
|
|
public YellowFinBluebelly() : base(0x3B07)
|
|
{
|
|
}
|
|
|
|
public override int LabelNumber => 1073831; // A Yellow Fin Bluebelly
|
|
}
|
|
}
|