Files
reallife-gamemode/ReallifeGamemode.Server/Inventory/Interfaces/IUsableItem.cs
2020-05-10 19:19:53 +02:00

16 lines
361 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
{
void Use(UserItem uItem);
}
}