Refactored inventory system

This commit is contained in:
hydrant
2018-12-18 22:23:33 +01:00
parent 4b81803883
commit 402b7d4f41
8 changed files with 42 additions and 37 deletions

View File

@@ -12,6 +12,11 @@ namespace reallife_gamemode.Server.Inventory.Items
public abstract class FoodItem : IUsableItem
{
public abstract int HpAmount { get; }
public abstract int Id { get; }
public abstract string Name { get; }
public abstract string Description { get; }
public abstract int Gewicht { get; }
public abstract string Einheit { get; }
public void Use(UserItem uItem, Client player)
{