21 lines
680 B
C#
21 lines
680 B
C#
using System;
|
|
|
|
namespace TrueCraft.API.Logic
|
|
{
|
|
/// <summary>
|
|
/// Providers item providers for a server.
|
|
/// </summary>
|
|
public interface IItemRepository
|
|
{
|
|
/// <summary>
|
|
/// Gets this repository's item provider for the specified item ID. This may return null
|
|
/// if the item ID in question has no corresponding block provider.
|
|
/// </summary>
|
|
IItemProvider GetItemProvider(short id);
|
|
/// <summary>
|
|
/// Registers a new item provider. This overrides any existing item providers that use the
|
|
/// same item ID.
|
|
/// </summary>
|
|
void RegisterItemProvider(IItemProvider provider);
|
|
}
|
|
} |