19 lines
403 B
C#
19 lines
403 B
C#
using GTANetworkAPI;
|
|
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(Client player);
|
|
}
|
|
}
|