Files
reallife-gamemode/Server/Inventory/Interfaces/IItem.cs
2018-12-19 20:22:00 +01:00

23 lines
492 B
C#

using System;
using System.Collections.Generic;
using System.Text;
/**
* @overview Life of German Reallife - Inventory Interfaces Item (IItem.cs)
* @author VegaZ
* @copyright (c) 2008 - 2018 Life of German
*/
namespace reallife_gamemode.Server.Inventory.Interfaces
{
public interface IItem
{
int Id { get; }
string Name { get; }
string Description { get; }
int Gewicht { get; }
string Einheit { get; }
uint Object { get; }
}
}