ModernUO/Projects/Scripts/Mobiles/Vendors/SBInfo/SBInfo.cs
2020-04-26 00:16:02 -07:00

12 lines
No EOL
292 B
C#

using System.Collections.Generic;
namespace Server.Mobiles
{
public abstract class SBInfo
{
public static readonly List<SBInfo> Empty = new List<SBInfo>();
public abstract IShopSellInfo SellInfo { get; }
public abstract List<GenericBuyInfo> BuyInfo { get; }
}
}