Add drop to Inventory

This commit is contained in:
VegaZ
2018-12-19 20:22:00 +01:00
parent a542409855
commit a04cd81ede
11 changed files with 76 additions and 26 deletions

View File

@@ -1,4 +1,5 @@
using GTANetworkAPI;
using reallife_gamemode.Server.Entities;
using System;
using System.Collections.Generic;
using System.Text;
@@ -13,6 +14,6 @@ namespace reallife_gamemode.Server.Inventory.Interfaces
{
public interface IDroppableItem : IItem
{
void Drop(Client player);
void Drop(UserItem uItem, Client player, int amount);
}
}

View File

@@ -17,5 +17,6 @@ namespace reallife_gamemode.Server.Inventory.Interfaces
string Description { get; }
int Gewicht { get; }
string Einheit { get; }
uint Object { get; }
}
}