- [X] Removes EventArgs - not needed - [X] Merges sequential checks - [X] Removes redundant type declarations
12 lines
287 B
C#
12 lines
287 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Server.Mobiles
|
|
{
|
|
public abstract class SBInfo
|
|
{
|
|
public static readonly List<SBInfo> Empty = new();
|
|
|
|
public abstract IShopSellInfo SellInfo { get; }
|
|
public abstract List<GenericBuyInfo> BuyInfo { get; }
|
|
}
|
|
}
|