Files
reallife-gamemode/Server/Inventory/Interfaces/IDroppableItem.cs
2018-12-19 20:22:00 +01:00

20 lines
472 B
C#

using GTANetworkAPI;
using reallife_gamemode.Server.Entities;
using System;
using System.Collections.Generic;
using System.Text;
/**
* @overview Life of German Reallife - Inventory Interfaces DroppableItem (IDroppableItem.cs)
* @author VegaZ
* @copyright (c) 2008 - 2018 Life of German
*/
namespace reallife_gamemode.Server.Inventory.Interfaces
{
public interface IDroppableItem : IItem
{
void Drop(UserItem uItem, Client player, int amount);
}
}