11 lines
274 B
C#
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);
|
|
}
|
|
}
|