Add /eat command

This commit is contained in:
VegaZ
2018-10-28 00:33:58 +02:00
parent cf10c52ab0
commit 052e632082
6 changed files with 85 additions and 5 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 IUsableItem
{
void Use(Client player);
void Use(UserItem uItem, Client player);
}
}