12 lines
227 B
C#
12 lines
227 B
C#
using ModernUO.Serialization;
|
|
|
|
namespace Server.Items;
|
|
|
|
[SerializationGenerator(0, false)]
|
|
public partial class PigIron : BaseReagent
|
|
{
|
|
[Constructible]
|
|
public PigIron(int amount = 1) : base(0xF8A, amount)
|
|
{
|
|
}
|
|
}
|