Adds style cop (#109)

This commit is contained in:
Kamron Batman 2020-04-26 00:16:02 -07:00 • committed by GitHub
parent 3e715bcb60
commit 556a17aba8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
1725 changed files with 33831 additions and 38046 deletions

View file

@ -4,8 +4,8 @@
{
private int m_Quantity;
public BaseWaterContainer(int Item_Id, bool filled)
: base(Item_Id) =>
public BaseWaterContainer(int item_Id, bool filled)
: base(item_Id) =>
m_Quantity = filled ? MaxQuantity : 0;
public BaseWaterContainer(Serial serial)
@ -13,9 +13,9 @@
{
}
public abstract int voidItem_ID{ get; }
public abstract int fullItem_ID{ get; }
public abstract int MaxQuantity{ get; }
public abstract int voidItem_ID { get; }
public abstract int fullItem_ID { get; }
public abstract int MaxQuantity { get; }
public override int DefaultGumpID => 0x3e;