/freeze was obselete and removed /unfreeze was obselete and removed /spectate was obselete and removed
14 lines
333 B
C#
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(Player client, UserItem uItem, FactionVehicle fVeh);
|
|
}
|
|
}
|