Files
reallife-gamemode/ReallifeGamemode.Server/Inventory/Interfaces/IItem.cs
2020-05-10 22:54:18 +02:00

19 lines
391 B
C#

/**
* @overview Life of German Reallife - Inventory Interfaces Item (IItem.cs)
* @author VegaZ
* @copyright (c) 2008 - 2018 Life of German
*/
namespace ReallifeGamemode.Server.Inventory.Interfaces
{
public interface IItem
{
int Id { get; }
string Name { get; }
string Description { get; }
int Gewicht { get; }
string Einheit { get; }
int Price { get; }
}
}