16 lines
No EOL
262 B
C#
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; }
|
|
}
|
|
} |