/** * @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; } } }