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

@@ -11,7 +11,7 @@ using System.Text;
namespace reallife_gamemode.Server.Inventory.Interfaces
{
public interface IDroppableItem
public interface IDroppableItem : IItem
{
void Drop(Client player);
}