Files
reallife-gamemode/ReallifeGamemode.Server/Inventory/Interfaces/IUsableItem.cs
2021-04-13 17:57:33 +02:00

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);
}
}