ModernUO/Scripts/Mobiles/Vendors/SBInfo/SBInfo.cs
2006-06-15 04:14:30 +00:00

16 lines
No EOL
262 B
C#

using System;
using System.Collections;
using Server.Items;
namespace Server.Mobiles
{
public abstract class SBInfo
{
public SBInfo()
{
}
public abstract IShopSellInfo SellInfo { get; }
public abstract ArrayList BuyInfo { get; }
}
}