Files
reallife-gamemode/ReallifeGamemode.Server/Inventory/Interfaces/IDroppableItem.cs

20 lines
437 B
C#

using GTANetworkAPI;
using ReallifeGamemode.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 ReallifeGamemode.Server.Inventory.Interfaces
{
public interface IDroppableItem : IItem
{
uint Object { get; }
}
}