Files
reallife-gamemode/ReallifeGamemode.Server/Inventory/Interfaces/IDroppableItem.cs
2019-09-17 20:45:54 +02:00

14 lines
298 B
C#

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