Files
reallife-gamemode/Server/Inventory/Interfaces/IUsableItem.cs
2018-10-25 21:54:53 +02:00

19 lines
385 B
C#

using GTANetworkAPI;
using System;
using System.Collections.Generic;
using System.Text;
/**
* @overview Life of German Reallife - Inventory Interfaces UsableItem (IUsableItem.cs)
* @author VegaZ
* @copyright (c) 2008 - 2018 Life of German
*/
namespace reallife_gamemode.Server.Inventory.Interfaces
{
public interface IUsableItem
{
void Use(Client player);
}
}