Files
reallife-gamemode/ReallifeGamemode.Server/Inventory/Interfaces/IWeaponDealItem.cs
2020-05-10 19:19:53 +02:00

11 lines
274 B
C#

using GTANetworkAPI;
using ReallifeGamemode.Database.Entities;
namespace ReallifeGamemode.Server.Inventory.Interfaces
{
public interface IWeaponDealItem : IItem, IDroppableItem
{
bool noTransfer(Player client, UserItem uItem, FactionVehicle fVeh);
}
}