16 lines
372 B
C#
16 lines
372 B
C#
using ReallifeGamemode.Database.Entities;
|
|
|
|
/**
|
|
* @overview Life of German Reallife - Inventory Interfaces UsableItem (IUsableItem.cs)
|
|
* @author VegaZ
|
|
* @copyright (c) 2008 - 2018 Life of German
|
|
*/
|
|
|
|
namespace ReallifeGamemode.Server.Inventory.Interfaces
|
|
{
|
|
public interface IUsableItem : IItem, IDroppableItem //marker Interface
|
|
{
|
|
bool Use(UserItem uItem);
|
|
}
|
|
}
|