20 lines
449 B
C#
20 lines
449 B
C#
using GTANetworkAPI;
|
|
using ReallifeGamemode.Server.Entities;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
/**
|
|
* @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);
|
|
}
|
|
}
|