Files
reallife-gamemode/ReallifeGamemode.Server/Inventory/Interfaces/IWeaponDealItem.cs
2019-10-03 14:43:21 +02:00

14 lines
333 B
C#

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